Computer Science, asked by 5258, 7 months ago

Create a python script to print "hello, world!" four times. Please tell step by step.​

Answers

Answered by Anonymous
12

Answer:

a="hello,world!"

for i in range (0,4):

print(a)

Similar questions