All public logs

Combined display of all available logs of Rosetta Code. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:34, 16 July 2023 Rorr404 talk contribs created page Rainbow (Created page with "{{draft task}} ;Task: Print out the word 'RAINBOW' to the screen with every character being a different color of the rainbow. =={{header|Python}}== ===Colored=== <syntaxhighlight lang="python"> from colored import Fore, Style red: str = f'{Fore.rgb(255, 0, 0)}' orange: str = f'{Fore.rgb(255, 128, 0)}' yellow: str = f'{Fore.rgb(255, 255, 0)}' green: str = f'{Fore.rgb(0, 255, 0)}' blue: str = f'{Fore.rgb(0, 0, 255)}' indigo: str = f'{Fore.rgb(75, 0, 130)}' violet: str =...")