Created: 2022-07-23
Tags: #fleeting
alternative for while loop that
for i in range(len(arr)):
pass
`range(start, stop, [step])
Try these:
My prediction is the loop will end until the end of the character or basically the length of the character
variable = "Hello there"
for i in range(variable):