Cómo usar return python
def function():
x = "random"
print("random")
return x
a = function() #Runs line 3, makes a the return value ("random")
Blue Cloud: Weird Coder