如何将用户输入转换go 30,45
为go(30,45)
?
到目前为止,我有:
input = "go 30,45"
output = re.sub(r'go (\d+)', r'go(\1,\1)', input)
但是这似乎不起作用,我知道它可能归结为 (\1,\1) 但我可以改变什么来获得所需的输出?
谢谢
如何将用户输入转换go 30,45
为go(30,45)
?
到目前为止,我有:
input = "go 30,45"
output = re.sub(r'go (\d+)', r'go(\1,\1)', input)
但是这似乎不起作用,我知道它可能归结为 (\1,\1) 但我可以改变什么来获得所需的输出?
谢谢