A place where I practice Python.
print("hello world")
- writes 'hello world in terminal
import random
print(random.randrange(-18, 36))
- random number generator
a = "I am TechnoDot!"
print(a.replace("TechnoDot", "SirAlexBigBrain"))
- replaces one phrase with another
mylist = ["A", "W", "Y"]
print(mylist)
- prints what is written in the list