0
我知道這是非常基本的問題,但無法將其框出。如何在python中的字符串中的雙引號內顯示單引號
我需要在腳本中執行一個自定義的基於python命令的命令。
ex:
below is the actual commands.
command-dist --host='server1' -- cmd -- 'command1;command2'
我需要在我的Python腳本中使用此命令 形成我的腳本,這個命令需要是遠程服務器上執行
我需要這個命令的格式在我的腳本中使用
cmd="ssh -q %s "command-dist --host=%s -- cmd -- 'cmd1;cmd2'"" %(host1,host2)
但以上是由於報價失敗,試過多少種方式仍然沒有運氣。
When I tried this way
cmd="ssh -q %s \"command-dist --host=%s -- cmd -- 'cmd1;cmd2'\"" %(host1,host2)
I don't under why back slashes are appearing before and after cmd1;cmd2?
This is what I am not getting.
cmd
'ssh -q %s "command-dist --host=%s -- cmd -- /'cmd1;cmd2'/""' %(host1,host2)
請幫助我如何獲得上述值