Skip to content

Commit b6195ae

Browse files
authored
Merge pull request #165 from ertugrultaskiran/master
Added Week02 homework
2 parents 2ee7f1a + e8a24df commit b6195ae

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Week02/info_ertugrul_taskiran.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Define student ID and full name as string variables
2+
student_id = "210316018" # Your actual student ID
3+
full_name = "Ertuğrul Taşkıran" # Your actual full name

Week02/types_ertugrul_taskiran.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Define variables with specified types
2+
my_int = 42 # Integer
3+
my_float = 3.14 # Floating point number
4+
my_bool = True # Boolean value
5+
my_complex = 2 + 3j # Complex number

0 commit comments

Comments
 (0)