Skip to content

Commit 8dbec64

Browse files
feat: initial commit with Day 1 notes and basic Python syntax script
1 parent b0486bc commit 8dbec64

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Day_01/day01_pbssd.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name = "Shubham Jana"
2+
age = 19
3+
ph_no = "9800000002"
4+
# type
5+
print(type(name))
6+
print(type(age))
7+
print(type(ph_no))
8+
# id
9+
print(id(name))
10+
print(id(age))
11+
print(id(ph_no))
12+
print("------------------------")
13+
x=2.3
14+
y=[1,2,3,4,5,6,7]
15+
print(type(x))
16+
print(type(y))
17+
print("------------------------")
18+
import keyword
19+
print(keyword.kwlist)

0 commit comments

Comments
 (0)