置字符串我要輸出像列表:的Python:內部列表
operation1 = [
'command\s+[0-9]+',
]
當模式[0-9]+
要動態填充。
所以我寫了:
reg = {
'NUMBER' : '^[0-9]+$',
}
operation1 = [
'command\s+'+str(reg[NUMBER]),
]
print operation1
但我得到一個錯誤:
Message File Name Line Position
Traceback
<module> <module1> 6
NameError: name 'NUMBER' is not defined
幫助需要!提前致謝。