Python Diploma - Lecture 1
ENG \ Mostafa Kamel
■■■ 2015
01027298499 - ■■■■■■ ■■■■ ■■■■■■■■■
Introduction
■■■■■■■ ■■ ■■■■■ ■■■■■ ■■■■■■■■■ ■■■■■■ ■■■■ ■■■■■■■■ Python.
Print Basics
print("Hello World")
■■■■■■ print ■■■■ ■■■■■■■■.
print("My name is Ahmed")
print("I love Python")
Variables
name = "Ali"
age = 20
city = "Luxor"
print(name)
print(age)
print(city)
■■■■■■■ ■■■■■■ ■■■■■■■■.
Input
name = input("Enter your name: ")
print(name)
Mini Project
name = input("Enter your name: ")
age = input("Enter your age: ")
city = input("Enter your city: ")
print("Hello " + name)
print("Your age is " + age)
print("You live in " + city)
Tasks
1. ■■■■ ■■■■ ■■■■■.
2. ■■■■ ■■■■■■ ■■■■ ■■ ■■■■■ ■■■■■■.
3. ■■■■ 3 ■■■ ■■■■■■.