Question:
So it is saying something about arguments but I have no idea why. Error Pic:
while True:
num1 = random.randint(0,10)
num2 = random.randint(0,10)
num3 = num1 + num2
quest1 = input('\nHere are your first two numbers they are ',num1,' and ',num2,'.',' So you have',num3, '. Would you like a card?',sep='')
import random
while True:
num1 = random.randint(0,10)
num2 = random.randint(0,10)
num3 = num1 + num2
statement = '\nHere are your first two numbers they are '+str(num1)+"and"+str(num2)+"So you have" + str(num3) + "would you like a card"
quest1 = input(statement)
There is no argument sep in the input function
it is exclusive to the print statement