Okay, so, my main problem here, is that I can't get my parameters from my function name to work with the other variables from the function. Here's the code:
def next_block(x):
p1 = 2
p2 = 2.3
p3 = "c"
p4 = "String"
p5 = "3.4444"
return p1, p2, p3, p4, p5, print (x)
next_block("testing")
p1, p2, p3, p4, p5 = next_block()
print (p1)
print (p2)
print (p3)
print (p4)
print (p5)
input()
I'm stumped on this one and I've done lots of experimenting, help would be appreciated.