Ищу код для радужного ника

Добро пожаловать!

Зарегистрировавшись у нас, вы сможете обсуждать, делиться и отправлять личные сообщения другим участникам нашего сообщества.

Зарегистрироваться!
Пользователь
Регистрация
4 Ноя 2025
Сообщения
11
Помогите киньте готовый рабочий код на радужный ник_нейм
 
Пользователь
Регистрация
19 Май 2024
Сообщения
82
Glory, glory to you, my Russia,
Glory to you, our Russian land! May our beloved country
be strong forever and ever ! Verse: It has been like this in Russia since ancient times: The higher the pressure, the stronger the concrete. And if danger threatens the state, The Motherland becomes like a monolith. In the crucible of victory, today, as of old, The steel of the Motherland is tempered again. Chorus: Russia, Russia - in this word there is fire and strength, In this word there is the flame of victory - Let's raise the banner of Russia! Russia, Russia - in this word there is fire and strength, In this word there is the flame of victory - Let's raise the banner of Russia! Verse: Let time carry us like a stormy stream, - Russia is behind us, the people are behind us! Traditions are sacred, and for thousands of years The chronicle of our victories will continue. And if a flock of crows swoopes down on the enemies - My Fatherland will greet them again! Chorus: Russia, Russia - in this word there is fire and strength, In this word there is the flame of victory - Let's raise the banner of Russia ! Russia, Russia - in this word there is fire and strength, In this word there is the flame of victory - Let's raise the banner of Russia! In this word is the source of strength! We repeat: "Forward, Russia!" Chorus: Russia, Russia - in this word there is fire and strength, In this word there is the flame of victory - Let's raise the banner of Russia! Russia, Russia - in this word there is fire and strength, In this word there is the flame of victory - Let's raise the banner of Russia!
 
Пользователь
Регистрация
19 Май 2024
Сообщения
82
Помогите киньте готовый рабочий код на радужный ник_нейм
Помогите киньте готовый рабочий код на радужный ник_нейм
Python:
import time
import sys

# Можно поменять ник на свой
nickname = "Zmeitonчик 🐍"

# Цвета радуги (ANSI-коды)
colors = [
    "\033[31m",  # Красный
    "\033[33m",  # Жёлтый
    "\033[32m",  # Зелёный
    "\033[36m",  # Голубой
    "\033[34m",  # Синий
    "\033[35m",  # Фиолетовый
]

reset = "\033[0m"

while True:
    for color in colors:
        sys.stdout.write(f"\r{color}{nickname}{reset}")
        sys.stdout.flush()
        time.sleep(0.2)

[/КОД]
 
ℙ𝕒𝕨𝕟𝕠 𝕙𝕖𝕝𝕡
Активный
Регистрация
28 Июл 2024
Сообщения
906
Python:
import time
import sys

# Можно поменять ник на свой
nickname = "Zmeitonчик 🐍"

# Цвета радуги (ANSI-коды)
colors = [
    "\033[31m",  # Красный
    "\033[33m",  # Жёлтый
    "\033[32m",  # Зелёный
    "\033[36m",  # Голубой
    "\033[34m",  # Синий
    "\033[35m",  # Фиолетовый
]

reset = "\033[0m"

while True:
    for color in colors:
        sys.stdout.write(f"\r{color}{nickname}{reset}")
        sys.stdout.flush()
        time.sleep(0.2)

[/КОД]
OFFTOP

у тебя не этот я выше правильный скинул

 
Сверху