I am trying to write a message to the user that contains a tuple and string something like
(0,0) what is your move:
i tried the following:
x= input((0,0)+ "what is your move: ")
cant concatenate str with tuple
x= input((0,0), "what is your move: ")
input takes a max of 1 arg
x= input(((0,0), "whats your move))"
result: (0,0) whats your move: )