So, I'm working on a script in Python 3, and I need something like this
control_input=input(prompt_029)
if only string_029 and int in control_input:
#do something
else:
#do something else
Basically, I am asking for code that would have condition like this:
if control_input == "[EXACT_string_here] [ANY_integer_here]"
How would the code look like in Python 3?