Please explain given code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
30th Mar 2021, 3:21 AM
PAWAN KUMAR MAURYA
PAWAN KUMAR MAURYA - avatar
2 Answers
+ 1
# print Hello world! in terminal print('Hello world!') # sets variable i to equal 0 i = 0 # starting loop with while true statement. the “True” after “while” is the condition for the loop to continue. you can use any condition statement - i < 5; or 1 == 1; etc. while True: # prints the value of i print( i) # adds 1 to the variable i. when i is 0, it will now become 1 (0+1), when 1 it will be 2 (1+1), and so on. i = i + 1 # if statement when i is equal yo or greater than 5 to execute code within if statement. if i >= 5: # when i is greater than or equal to 5 print “breaking” print("breaking") # after print break or exit code. break # exit while loop and print finished print(""""""finished""""") i hope that is helpful.
30th Mar 2021, 3:37 AM
you are smart. you are brave.
you are smart. you are brave. - avatar
0
Thanks ❤️
30th Mar 2021, 4:00 AM
PAWAN KUMAR MAURYA
PAWAN KUMAR MAURYA - avatar