python ignore return value

Solutions on MaxInterview for python ignore return value by the best coders in the world

showing results for - "python ignore return value"
Enrico
17 Nov 2018
1def f():
2    return 1, 2, 3
3
4_, _, x = f()