Python

A place where I practice Python. Developed by @SirAlexBigBrain

View project on GitHub

Python

A place where I practice Python.

855C2F88-CF3A-463E-9B6C-6D7DC46FC6B2

Python Programming

97CAB10E-607B-4948-9FA3-572E2709256F

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