Chapter One
Chapter One
Introduction to
Python
Prepared by: Eng
Mohamed Ahmed
Mohamed
Fundamentals of Python
>>>’mohamed’
Print
Python command print – Displays data, values,
and expressions
>>> "hello"
'hello'
>>> "world"
'world'
>>> "hello"+"world"
'helloworld'
Numbers in python
>>> a=3 #Name Created
>>> b=4
>>> a+1, a-1 # (3+1), (3-1)
(4,2)