0 کاربر و 1 مهمان درحال مشاهده موضوع.
#!/usr/bin/env python3import osimport timeimport sysos.system('clear')rows, columns = os.popen('stty size', 'r').read().split()yellow = Truefor i in range(1, int(rows) + 1): for j in reversed(range(1, int(columns))): print("\033[{};{}H".format(i, j), end='') if yellow == True: print("\033[33m=", end='') # yellow yellow = False else: print("\033[34m=", end='') # blue yellow = True print("\033[{};{}H".format(i, j - 1), end='') sys.stdout.flush() time.sleep(0.05)print('\033[0m', end='')print()
قشنگ بود علی جان, حتما سر فرصت سورسش را هم میخونم
sys.stdout.flush()