forked from ronitraj74/python-Learning-code
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path02_practice.py
More file actions
23 lines (19 loc) · 844 Bytes
/
02_practice.py
File metadata and controls
23 lines (19 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#1.------------two number to add-----------------
# a = int(input("Enter the first number to add: "))
# b = int(input("Enter the second number to add: "))
# print(a + b)
#2.----------------------square of ther number-----------------------
# a = int(input("Enter the number to make the square :"))
# print(a*a)
#3.-------------------Averge of the number given by the user------------------
# a = int(input("Enter the first number to make averge : "))
# b = int(input("Enter the second number to make averge : "))
# print((a+b)/2)
#4.--------------------reminder of the divided number-----------------
# a = 324
# b = 34
# print(a%b)
#5.-------------BOOLEAN EXPRESION-------------
# a = int(input("Enter the first number to comparision : "))
# b = int(input("Enter the second number to comparision : "))
# print(a>b)