How to print pattern in Python? All Questions › Category: Python › How to print pattern in Python? 0 Vote Up Vote Down Chetan Shidling asked 4 years ago Like this # # # # # # # # # # # # # # # # 1 Answers 0 Vote Up Vote Down chetan shidling answered 4 years ago By using this code you can print. for I in range(4): for j in range(4): print(“# “,end=” “) print()