Skip to content Skip to sidebar Skip to footer

How To Make Random Characters And Numbers Appear All Over The Screen, From Up To Down Like An Animation?

How do I make random characters and numbers appear all over the screen perfectly, from up to down like an animation? With details, it should start with the first ever line (not nec

Solution 1:

You can activate your program via the command prompt and then write this block of code in python:

import random
import shutil

columns, rows = shutil.get_terminal_size(fallback=(80, 24))
size_of_console = columns * rows

for i inrange (size_of_console):
    print(chr(random.randint(33, 126)), end = '')

make sure you have the right libraries installed and you are good to go! If you have further questions I would love to help!

Post a Comment for "How To Make Random Characters And Numbers Appear All Over The Screen, From Up To Down Like An Animation?"