我有两个变量来保存使用subprocess
输出的输出,并希望将两个变量的输出打印成一行。
以下是详细信息..
cmd1=subprocess.Popen("some_command", shell=True, stdout=subprocess.PIPE)
cmd_input1=cmd1.stdout.read().decode('utf8')
cmd_input1 has:
one
two
three
four
cmd2=subprocess.Popen("othere_command", shell=True, stdout=subprocess.PIPE)
cmd_input2=cmd2.stdout.read().decode('utf8')
while cmd_input2 has :
1
2
3
4
我需要将两个变量的打印输出分成一行,下面的行。
one 1
two 2
three 3
four 4
我在下面试过但没有工作..我刚开始学习python ..
print("% %." % (cmd_input1, cmd_input2)
它的python3,请指导..