Python Interview questions - lambda functions
(Python version 3.9 or later version)
What would be the result of executing the following code?
(lambda x: 3*x // 3 / x%3)(16)
1
1.0
8
8.0
gk