Simple Python Teqniques to use

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:

  • Adding color, using "\033[1;34m" (blue) or other colors
  • Adding pauses, using the "import time" and time.sleep(seconds) function
  • Clearing the screen, by importing os and using os.system("clear")
  • More on Colors

  • Purple color: "\033[1;35m"
  • Cyan: "\033[1;36m"
  • Yellow: "\033[1;33m"
  • Red: "\033[1;31m"
  • Blue: "\033[1;34m"
  • How to use the colors:

    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! 😟

    Code for colors

    Use this example to see how to add colors!

    How to clear the screen

    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!