questionlp’s avatarquestionlp’s Twitter Archive—№ 42,469

  1. And, if a function or method returns multiple variables and you don't need to use one of the returned values, replace what you would use for a variable name with an underscore. So, if something() returns two values and you only need the second: _, data = something() #Python @nedbat/1571887844364263424