GowrinandanJ / Gowrinandana-J-

0 stars 0 forks source link

Day 4 #2

Open GowrinandanJ opened 1 day ago

GowrinandanJ commented 1 day ago

Write a python program to print "hello world" using while loop

Misnavi commented 1 day ago

a=0 while a<=0: print("hello world") a+=1

thanseermather375 commented 1 day ago

a=0 while a<=0: print("hello world") a+=1

VaibhavSaji commented 12 hours ago

count=0 while count<=0: count+=1 print('Hello world')