FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-Learning-code/python/02_practice.py at main · Aakriti0109/python-Learning-code · GitHub
Aakriti0109
/
python-Learning-code
Public template
forked from
Ronit049/python-Learning-code
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-Learning-code
/
python
/
02_practice.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (19 loc) · 844 Bytes
Breadcrumbs
python-Learning-code
/
python
/
02_practice.py
Copy path
File metadata and controls
23 lines (19 loc) · 844 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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)
Back
|
FazBrowse Home
|
New Git URL