Not a lot of people know how to make their python codes polished and pretty. There are numerous ways you can add style to your work, such as:
To use colors, just type print(color + "String goes here"). Treat the color like a variable, but then add the variable in the begining first, not last or in the middle. But remember to define the variable before you use it, otherwise your program will not work! 😟
Use this example to see how to add colors!
One way to clear the screen after printing or inputing something is using the os package. At the very begining of your program, you must write import os. To use it, type os.system("clear") wherever you need to clear the screen.
These are just a few ways to spruce up your python creations a little bit. You can add lots more!