+ 1
Why the output of my code is ( g g g END ) and not (9 8 7 END)
g = 9 while g > 6: print ("g") g = g - 1 print ("END")
1 Antwort
+ 5
Because you have to remove the quotes from the g in the print function :)
g = 9 while g > 6: print ("g") g = g - 1 print ("END")