We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e450313 commit c01a7b3Copy full SHA for c01a7b3
Basic Data Types/tuples.py
@@ -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