This commit is contained in:
ada-dmitry
2023-04-11 21:01:39 +03:00
parent 7206df1883
commit 49a7b5b185
51 changed files with 168 additions and 83 deletions
+9
View File
@@ -0,0 +1,9 @@
def f():
a = [1,2,3]
b = [3,4,5]
c = ["1", "2", "3"]
return a,b,c
a,b,c = f()
print(a, b, c)