Skip to content

Commit c01a7b3

Browse files
authored
Create tuples.py
1 parent e450313 commit c01a7b3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Basic Data Types/tuples.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
if __name__ == '__main__':
2+
n = int(input())
3+
integer_list = tuple(map(int, input().split()))
4+
print(integer_list.__hash__())

0 commit comments

Comments
 (0)