We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52d62ac commit c20bb03Copy full SHA for c20bb03
PassReference
@@ -0,0 +1,9 @@
1
+def set_list(list):
2
+ list = ["a","b","c"]
3
+ return list
4
+def add (list):
5
+ list.append("d")
6
7
+my_list = ["e"]
8
+print(set_list(my_list))
9
+print(add(my_list))
0 commit comments