Skip to content

Commit 15c5f6e

Browse files
committed
updated
1 parent 5f1d2b4 commit 15c5f6e

File tree

159 files changed

+41
-495040
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+41
-495040
lines changed

01_Our_First_Python_Program/helloworld.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Python Tutorial 2023
2-
# Video #04 - # Our First Python Program
1+
# Python Tutorial
32

43
# Print Hello World
54
print("Hello Wold")

02_Variables/02_variables_builtin_functions.md

-300
This file was deleted.

02_Variables/variables.py

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
1-
# Python Tutorial 2023
2-
# Video #05 - # Variables in Python
1+
# Python Tutorial
32

43
#Variables store data in a computer Memory.
54

6-
#A Python, a variable is a named location in memory used to store a value. When you create a variable, you specify
5+
# A Python, a variable is a named location in memory used to store a value. When you create a variable, you specify
76
# its name and the value it should store. You can then access the value stored in a variable by referencing its name.
87

9-
#In Python, you can create variables of different types, such as integers, floating point numbers, and strings.
8+
# In Python, you can create variables of different types, such as integers, floating point numbers, and strings.
109
# The type of a variable is determined by the value it stores.
1110

12-
#Let’s jump into computer screen.
11+
# Let’s jump into computer screen.
1312

1413

15-
# YES, Python is a case-sensitive programming language. This means that it treats uppercase
14+
# Python is a case-sensitive programming language. This means that it treats uppercase
1615
# and lowercase letters differently.
1716
# Hence, we cannot use two terms having same characters but different cases interchangeably in Python.
1817

@@ -26,7 +25,7 @@
2625

2726
# Declaring multiple variables in one line
2827

29-
first_name, last_name, country, age, is_married = 'Asabeneh', 'Yetayeh', 'Helsink', 250, True
28+
first_name, last_name, country, age, is_married = 'Code With', 'Muh', 'Pakistan', 23, True
3029

3130
print(first_name, last_name, country, age, is_married)
3231
print('First name:', first_name)
@@ -40,18 +39,18 @@
4039
###
4140

4241

43-
first_name = 'Asabeneh'
44-
last_name = 'Yetayeh'
45-
country = 'Finland'
46-
city = 'Helsinki'
42+
first_name = 'Code with'
43+
last_name = 'Muh'
44+
country = 'Pakistan'
45+
city = 'Isb'
4746
age = 250
4847
is_married = True
4948
skills = ['HTML', 'CSS', 'JS', 'React', 'Python']
5049
person_info = {
51-
'firstname':'Asabeneh',
52-
'lastname':'Yetayeh',
53-
'country':'Finland',
54-
'city':'Helsinki'
50+
'firstname':'David',
51+
'lastname':'Da',
52+
'country':'Pakistan',
53+
'city':'Isb'
5554
}
5655

5756
# Printing the values stored in the variables

03_data_types/datatypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
x = "Hello World" #string
2626
x = 20 #int
2727
x = 20.5 #float
28-
x = 1j #complex
28+
2929
x = ["apple", "banana", "cherry"] #list
3030
x = ("apple", "banana", "cherry") #tuple
3131
x = range(6) #range

0 commit comments

Comments
 (0)