Open GowrinandanJ opened 1 day ago
Write a python program to print "hello world" using while loop
a=0 while a<=0: print("hello world") a+=1
count=0 while count<=0: count+=1 print('Hello world')
Write a python program to print "hello world" using while loop