Ch 26 while loop
i=1
while i<=10:
print(f"hello world {i}")
i=i+1
#I forgot the put the last line
#we use while loop to execute the program many time what ammount u want
#if u want unlimited not include the last line.#if u want in amount of print u mast include the last line
Comments
Post a Comment