How to return multiple values from functions within python def x(): return 1, 2, 3, 4 a, b, c, d =x() print(a, b, c, d) Share this:Click to share on Twitter (Opens in new window)Click to share on Facebook (Opens in new window)Like this:Like Loading... Related