だから、私は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のコードはどのようになりますか?