标题说明了一切。有没有办法让我输入
input("")
他们输入
dbs -U thebos123 -P pw.txt
然后将 thebos123 存储到变量中,而不是其余
答案 0 :(得分:1)
如果它始终是第三个词,你可以这样做。
line = raw_input("Some input please: ") # or `input("Some...` in python 3
splitline = line.split(" ");
var = splitline[2]
print var
测试
python pyprog.py
Some input please: dbs -U thebos123 -P pw.txt
thebos123