Computer Science, asked by subhashchowdhury14, 13 days ago

Write an flowchart and then dra w a flowchart to print your name three times?​

Answers

Answered by samarthkrv
0

Answer:

name = input("What is your name? \n")

for i in range(3):

   print(name)

Explanation:

Similar questions