X Tutup
"""Shining Carpet, by Al Sweigart al@inventwithpython.com Displays a tessellation of the carpet pattern from The Shining. This code is available at https://nostarch.com/big-book-small-python-programming Tags: tiny, beginner, artistic""" # Set up the constants: X_REPEAT = 6 # How many times to tessellate horizontally. Y_REPEAT = 4 # How many times to tessellate vertically. for i in range(Y_REPEAT): print(r'_ \ \ \_/ __' * X_REPEAT) print(r' \ \ \___/ _' * X_REPEAT) print(r'\ \ \_____/ ' * X_REPEAT) print(r'/ / / ___ \_' * X_REPEAT) print(r'_/ / / _ \__' * X_REPEAT) print(r'__/ / / \___' * X_REPEAT)
X Tutup