LearningPy/main.py

4 lines
57 B
Python
Raw Normal View History

2022-11-30 19:13:17 +00:00
#Lambda
x = lambda a,b:a**b
print(x, type(x), x(2,3))