In python to create for loop refers to executes a sequence of statements multiple times and abbreviates the code that manages the loop variable.
Use the below example to create for loop:
test = raw_input("what is for loop ")
for letter in test:
call = "for loop " + letter + "!"
print call
print letter + "!"
print "how to create for loop"
print word + "!"
0 Comment(s)