Spoken Tutorial Python - English
Spoken Tutorial Python - English
ON
SPOKEN TUTORIAL PYTHON - ENGLISH
SCHOOL OF COMPUTING
GRAPHIC ERA HILL UNIVERSITY
DEHRADUN – 248001
Presented By:Presented To:
Mayur Singh Pundir Mr. Atul Bhandari
Roll no. – 1021616 Class Coordinator
BCA – VI Sem (B) BCA – VI Sem (B)
INTRODUCTION
other middle - level not so high - level languages like C, C++, Java etc.
PLUSES OF PYTHON
Easy to Use OO Language
Expressive Language
Interpreted Language
Its Completeness
b=temp;
Program to obtain 3 numbers and print their sum
num1 = int( input( “Enter number 1 : “))
print(“Sum is : “, sum)
Built-in core data types
Numbers(int, float, complex) => +12, -15, 3000
+ Unary Plus
- Unary minus
- Bitwise complement
Conditional loops the loops that repeat until a certain thing happens i.e., they
conditional loop.
Program to print a table
num=5
for a in range(1,11):
print(num,’x’,a,’=‘,num*a)
Traversing a string
name=“superb”
for ch in name:
print(ch,’-’,end=‘ ‘)
Output
s-u-p-e-r-b-
Thank
you