Posts by Eduardo Amaro Maciel • 11 points
1 post
-
1
votes3
answers169
viewsA: Doubt about Python data output
my solution: unmodified program rep = 1 while rep <= 20: print(rep) rep += 1 modified program while rep <= 20: print(rep, end = ' ') rep += 1 I could also create a def, but I don’t know if…