Files
PyProg_ada/Python/TeleBot/test.py
T
2023-04-11 21:01:39 +03:00

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)