Skip to content

Commit f17296b

Browse files
committed
updates-py
1 parent 6334f6e commit f17296b

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

_05_list.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,11 @@
1313
print(add)
1414

1515
# nums.append , insert , remove , pop
16-
# del nums[2:4] nums.extend([34,56,67])
17-
#min(nums), max, sum ,nums.sort
16+
# del nums[2:4]
17+
# nums.extend([34,56,67])
18+
#min(nums), max, sum ,nums.sort
19+
20+
nums.sort();
21+
print(nums);
22+
23+
print(min(nums))

_06_tuple.py renamed to _06_tuple_set.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
s={22,56,32,89,54} # set
1111
print(s) #random value usinh hash
12-
# index thing not suppoerted
12+
# index thing not suppoerted
File renamed without changes.

_09_variables.py

+3
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@
1414
print(id(10))
1515

1616
print(type(num))
17+
print(type(name))
18+
19+
1720

0 commit comments

Comments
 (0)