LearningPy/main.py
2022-11-30 19:13:17 +00:00

4 lines
57 B
Python

#Lambda
x = lambda a,b:a**b
print(x, type(x), x(2,3))