Uploaded by Qudsia Ghufran

BSE-20F-092 LAB5

advertisement
LAB # 5
Qudsia Ghufran
BSE-20F-092
Operating System
First Python Program:
1. Open notepad and type following program
Print (“Hello World”)
2. Save above program with name.py
3. Open command prompt and change path to python program location
4. Type “python name.py” (without quotes) to run the program.
Python 1 Example
#
D
e 2 Example
Python
c
#l
a
r
D
e
c
la
a
vr
ae
r
ia
a
b
v
la
er
i
aa
n
b
d
l
e
i
n
a
in
td
Example 3: Declaring and assigning value to a constant
Create a constant.py
1. PI = 3.14
2. GRAVITY = 9.8
Create a main.py
1. import constant
2.
3. print(constant.PI)
4. print(constant.GRAVITY)
When you run the program, the output will be:
3.14
9.8
Types of Operator
Python language supports the following types of operators.
•
Arithmetic Operators
•
Comparison (Relational) Operators
•
Assignment Operators
•
Logical Operators
•
Bitwise Operators
•
Membership Operators
•
Identity Operators
Exercise:
1. WAP to add two numbers in python
2. WAP to declare variables and display types of respective variable
Download