OWL
OWL
  • 3
  • 77
Explaining for loop in python
#coding #python #forloop #coding #code
This is will be a simple explanation on for loop and I hope y'all enjoy it
Переглядів: 27

Відео

How to make a simple to-do list in python in 10 mins
Переглядів 24Місяць тому
#coding #programming #tutorial #python In this vid we will see how to make a simple python to-do list app in python
Python calculator tutorial
Переглядів 30Місяць тому
#python #tutorial #code #python #tutorial #code num1 = float(input("Enter the first number: ")) sign = input("Enter the sign ( , - , / , *): ") num2 = float(input("Enter the second number: ")) if sign " ": result = num1 num2 print(round(result)) elif sign "-": result = num1-num2 print(round(result)) elif sign "/": result = num1/num2 print(round(result)) elif sign "*": result = num1*num2 print(r...