55.7k views
3 votes
print_pattern() prints 5 characters. Call print_pattern() twice to print 10 characters. Example output: ***** ***** in python

1 Answer

3 votes

Answer:

def print_pattern():

print("*****",end=" ")

print_pattern()

print_pattern()

User Juan Rivillas
by
8.4k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.