mirror of
https://github.com/ada-dmitry/PyProg_ada.git
synced 2026-09-24 09:20:44 +00:00
9 lines
110 B
Python
9 lines
110 B
Python
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) |