0
How do I do this?
4 Answers
+ 4
while True:
print("Just do it!")
+ 4
# Conditional loop:
while condition_to_be_checked_for_being_True:
command_block
# Iteration loop:
for i in range(1000):
command_block
0
Please be more specific in order to get a fitting answer.
0
Consult Nike.



