'5.1.1 Basic Funtion Call Output [duplicate]

I have been trying to get this to output correctly. It is saying I'm not adding a line break at the end.

I was wondering, how I could add the line break? From my understanding the code is for the most part right.

I also need to have it take in another output that Zybooks generates itself, so I can't just simply put two print statements of ('*****')

def print_pattern(): 
    print('*****') 

for i in range(2): 
    print(print_pattern()) 

Expected output:

***** 
***** 

My output:

***** 
None 
***** 
None


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source