[Solved] Data type when returning multiple values [closed]
[ad_1] I think this is what you might be looking for! After researching how to find the data-types of variables I’ve come across this: >>> y = 2,4,6 (2,4,6) >>> print (y.__class__) <class ‘tuple’> A tuple is a data-type much like a list in that it stores seperate values, but it is indeed not a … Read more