Y Code
Y Code
  • 4
  • 88
Simple And Easy Age Verification Code | Python Timelapse
LOL! i cant put the code because yt doesnt allow me too! (Sorry)
Переглядів: 39

Відео

Simple But Long Weight Conversion Code | Python Timelapse
Переглядів 1021 годину тому
BRO THIS IS MYT 3RD VID IN 1 DAY I NEED TO STOP (heres the code btw) weight = float(input("enter your weight: ")) unit = input("what is the unit? (K or L): ") if unit "K": weight = weight * 2.205 unit = "Lbs" print(f"your weight is {weight} {unit}") elif unit "L": weight = weight * 2.205 unit = "Kgs" print(f"your weight is {weight} {unit}") else: print(f"{unit} is NOT valid!")
Easy While Loop Code | Python
Переглядів 921 годину тому
ez while loop code. code: name = input("enter your name: ") while name "": print("you did not enter your name!") name = input("enter your name: ") print(f"hello {name}!")
Simple Calculator | Python Timelapse
Переглядів 2121 годину тому
My first video! :) Hope you guys enjoy! heres the code: operator = input("Enter an operator ( - * /): ") num1 = int(input("enter the first number: ")) num2 = int(input("enter the second number: ")) if operator " ": result = num1 num2 print(result) elif operator "-": result = num1 - num2 print(result) elif operator "*": result = num1 * num2 print(result) elif operator "/": result = num1 / num2 p...

КОМЕНТАРІ

  • @Ycode23
    @Ycode23 9 днів тому

    Yall, im still an amateur at coding so, no hate please.