Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 712 Bytes

File metadata and controls

31 lines (24 loc) · 712 Bytes

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