/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
earth_console_animations.py
17 строк
388 B
gil9red
Refactoring. Using black code style
24 июн 2023, 17:41
24 июн 2023, 17:41
eeece08
Код
Авторство
О чём код?
#!/usr/bin/env python3 # -*- coding: utf-8 -*- __author__ = "ipetrash" # SOURCE: https://github.com/Dark-Princ3/X-tra-Telegram/blob/aa628465dddaf06383c84914df70c89a4d4fbf15/userbot/plugins/Earth.py#L13 import time items = "🌏🌍🌎🌎🌍🌏🌍🌎" for i in range(48): print("\r" + " " * 100 + "\r", end="") print(items[i % len(items)], end="") time.sleep(0.1)