create a Python script to print "hello world" five times
Answers
Answered by
0
Answer:
Open python software in your pc.
Start run : python.
for i in range (5):
Print (" hello world").
Hope those last 2 lines are the code for execution of hello world 5 times in python.
Similar questions