Yes, you can send eval variables using a dictionary as the second (and third) arguments. These arguments are documented here. Here's your example:
>>> eval('t*3', {'t': 17})
51
Incidentally, the specific error you are getting is not because eval can't take a statement assigning variables as it's first parameter (although indeed it cannot); it's because the parameter to str needs to be an expression, which can't assign variables, not a statement, which can. Notice you'll get the same error with just str:
>>> str(t=17;t*3)
File "<stdin>", line 1
str(t=17;t*3)
^
SyntaxError: invalid syntax
EDIT: As for your specific use case, the problem you have there is that the input string
't*13+q', {'q':4,'t':2}
gets evaluated (by input, which reads in a string and calls eval on it) into a so-called "tuple," i.e. a combination of multiple expressions into a single expression, due to the presence of the comma. You can't evaluate a tuple. (Your use case example actually should return an error -- not sure why it isn't.)
To fix this, you need to "unpack" the tuple so eval knows which part of the tuple is the expression you want to evaluate (the first part, with the string expression t*13+q, i.e. z[0]) and which is the dictionary of variable values (the second part, with the dictionary {'q':4,'t':2}, i.e. z[1]), i.e. replace y=eval(z) with
y = eval(z[0], z[1])
Alternatively (and more Pythonically), you can tell Python to automatically unpack the tuple into consecutive parameters to a function using the asterisk syntax, i.e. replace y=eval(z) with
y = eval(*z)