Skip to content

Commit 3ea1a97

Browse files
committed
dffdgfd
1 parent c81ca99 commit 3ea1a97

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

tuple/tuple_example.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
t4=tuple ((1, 2, 3, 4, 5))
22
print(t4)
3+
4+
5+
# tuple expected at most 1 argument

tuple/tuple_len.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
tuple1 = ('apple', 'banana', 'cherry')
3+
print(len(tuple1))

tuple/tupleanother.py

+3
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66

77
l1=tuple(x for x in range(10))
88
print(l1)
9+
10+
11+
# now it work

0 commit comments

Comments
 (0)