Here a simple tutorial by Qerewrad
print("hello user")
Output: hello user
import random, time, os Name = input("what is your name:\n") time.sleep(0.3) print("welcome",name) #this clear the txt os.system("clear")
output: what is your name: You:jack welcome jack
jack
rn = random.randint(1, 1000) #you can change "rn" #(1, 1000) from (1) to (1000)
rtxt = ["you'r","he's","she's"] Rtxt = ["level","xp","win"] Rnum = random.randint(1, 900) time.sleep(0.3) Ra = random.choice(rtxt) Rb = random.choice(Rtxt) print(Ra,"",Rb,"is",Rnum)
output: you'r level/win/xp is??? he's leve/win/xp is??? she's level/win/xp is???
import
Tutorial By Qerewrad
@https://replit.com/@ggggyvzjz/BuoyantSwiftBlogware#main.py
Python tutorial
- My First Tutorial -
Here a simple tutorial by Qerewrad
Output: hello user
output:
what is your name:
You:
jack
welcome jack
random txt codes
output:
you'r level/win/xp is???
he's leve/win/xp is???
she's level/win/xp is???
don't
forgetimport
@https://replit.com/@ggggyvzjz/BuoyantSwiftBlogware#main.py