所以,我正在编写 Python 3 中的脚本,我需要这样的东西
control_input=input(prompt_029)
if only string_029 and int in control_input:
#do something
else:
#do something else
基本上,我要求具有以下条件的代码:
if control_input == "[EXACT_string_here] [ANY_integer_here]"
代码在 Python 3 中会是什么样子?