In python, when you have a list of tuples, you can iterate over them. For example when you have 3d points then:
for x,y,z in points:
pass
# do something with x y or z
What if you only want to use the first variable, or the first and the third. Is there any skipping symbol in python?
Is something preventing you from not touching variables that you’re not interested in? There is a conventional use of underscore in Python to indicate variable that you’re not interested. E.g.:
You need to understand that this is just a convention and has no bearing on performance.