How to add " to a string in pythonHow do I check whether a file exists without exceptions?Calling an external command in PythonWhat are metaclasses in Python?How can I safely create a nested directory in Python?How do I parse a string to a float or int in Python?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?Does Python have a string 'contains' substring method?How do I lowercase a string in Python?

I see my dog run

Could a US political party gain complete control over the government by removing checks & balances?

Can you lasso down a wizard who is using the Levitate spell?

How do I create uniquely male characters?

Correctly defining the return of a procedure

Why Is Death Allowed In the Matrix?

Email Account under attack (really) - anything I can do?

Finding files for which a command fails

Is repealing the EU Withdrawal Act a precondition of revoking Article 50?

Shall I use personal or official e-mail account when registering to external websites for work purpose?

Why do UK politicians seemingly ignore opinion polls on Brexit?

What is the offset in a seaplane's hull?

Doomsday-clock for my fantasy planet

Can Medicine checks be used, with decent rolls, to completely mitigate the risk of death from ongoing damage?

Copycat chess is back

How to create a consistant feel for character names in a fantasy setting?

Non-Jewish family in an Orthodox Jewish Wedding

Domain expired, GoDaddy holds it and is asking more money

Is Social Media Science Fiction?

Why is an old chain unsafe?

New order #4: World

Is there really no realistic way for a skeleton monster to move around without magic?

What is GPS' 19 year rollover and does it present a cybersecurity issue?

Is this homebrew feat, Beast of Burden, balanced?



How to add " to a string in python


How do I check whether a file exists without exceptions?Calling an external command in PythonWhat are metaclasses in Python?How can I safely create a nested directory in Python?How do I parse a string to a float or int in Python?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?Does Python have a string 'contains' substring method?How do I lowercase a string in Python?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I am trying to start a torrent downloader in windows, which is executed from the command prompt. It takes in a command such as torrent "magnet_link". The problem I'm having is when I start the command from python using os.system("start /wait cmd /c torrent " + '"' + link + '"') for some reason the " character is not shown in the command prompt window launched, making the command useless. The response I am getting is: 'dn' is not recognized as an internal or external command,
operable program or batch file.










share|improve this question



















  • 1





    can you attach a scree shot?

    – Lei Yang
    Mar 9 at 4:22











  • Can you show what you are getting?

    – Rahil Hastu
    Mar 9 at 4:45











  • updated the question

    – Daquaney
    Mar 9 at 4:55

















1















I am trying to start a torrent downloader in windows, which is executed from the command prompt. It takes in a command such as torrent "magnet_link". The problem I'm having is when I start the command from python using os.system("start /wait cmd /c torrent " + '"' + link + '"') for some reason the " character is not shown in the command prompt window launched, making the command useless. The response I am getting is: 'dn' is not recognized as an internal or external command,
operable program or batch file.










share|improve this question



















  • 1





    can you attach a scree shot?

    – Lei Yang
    Mar 9 at 4:22











  • Can you show what you are getting?

    – Rahil Hastu
    Mar 9 at 4:45











  • updated the question

    – Daquaney
    Mar 9 at 4:55













1












1








1








I am trying to start a torrent downloader in windows, which is executed from the command prompt. It takes in a command such as torrent "magnet_link". The problem I'm having is when I start the command from python using os.system("start /wait cmd /c torrent " + '"' + link + '"') for some reason the " character is not shown in the command prompt window launched, making the command useless. The response I am getting is: 'dn' is not recognized as an internal or external command,
operable program or batch file.










share|improve this question
















I am trying to start a torrent downloader in windows, which is executed from the command prompt. It takes in a command such as torrent "magnet_link". The problem I'm having is when I start the command from python using os.system("start /wait cmd /c torrent " + '"' + link + '"') for some reason the " character is not shown in the command prompt window launched, making the command useless. The response I am getting is: 'dn' is not recognized as an internal or external command,
operable program or batch file.







python windows






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 9 at 4:55







Daquaney

















asked Mar 9 at 4:13









DaquaneyDaquaney

326




326







  • 1





    can you attach a scree shot?

    – Lei Yang
    Mar 9 at 4:22











  • Can you show what you are getting?

    – Rahil Hastu
    Mar 9 at 4:45











  • updated the question

    – Daquaney
    Mar 9 at 4:55












  • 1





    can you attach a scree shot?

    – Lei Yang
    Mar 9 at 4:22











  • Can you show what you are getting?

    – Rahil Hastu
    Mar 9 at 4:45











  • updated the question

    – Daquaney
    Mar 9 at 4:55







1




1





can you attach a scree shot?

– Lei Yang
Mar 9 at 4:22





can you attach a scree shot?

– Lei Yang
Mar 9 at 4:22













Can you show what you are getting?

– Rahil Hastu
Mar 9 at 4:45





Can you show what you are getting?

– Rahil Hastu
Mar 9 at 4:45













updated the question

– Daquaney
Mar 9 at 4:55





updated the question

– Daquaney
Mar 9 at 4:55












2 Answers
2






active

oldest

votes


















2














Use can use built-in str.center:



link = 'http://stackoverflow.com'
print("start /wait cmd /c torrent %s" % link.center(len(link)+2, '"'))

# start /wait cmd /c torrent "http://stackoverflow.com"





share|improve this answer























  • Doesn't this generate the same string as the code Daquaney wrote?

    – mythenmetz
    Mar 9 at 15:49


















1














Quotation marks in shell are interpreted if you do not escape them. To escape them, prepend a backslash. Look here:



os.system("start /wait cmd /c torrent \"\"".format(link))


What happens:




  • \ is interpreted as a single backslash


  • " is interpreted as a quotation mark


  • .format(link) replaces with link, to avoid adding strings (just for the style of code)





share|improve this answer

























  • when I put this in my code it says that the is an invalid syntax

    – Daquaney
    Mar 9 at 4:27











  • Then you are probably using Python 2 and not 3, the formatting syntax there is a bit more complicated, as it can be seen in Chris answer.

    – mythenmetz
    Mar 9 at 15:46












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073917%2fhow-to-add-to-a-string-in-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














Use can use built-in str.center:



link = 'http://stackoverflow.com'
print("start /wait cmd /c torrent %s" % link.center(len(link)+2, '"'))

# start /wait cmd /c torrent "http://stackoverflow.com"





share|improve this answer























  • Doesn't this generate the same string as the code Daquaney wrote?

    – mythenmetz
    Mar 9 at 15:49















2














Use can use built-in str.center:



link = 'http://stackoverflow.com'
print("start /wait cmd /c torrent %s" % link.center(len(link)+2, '"'))

# start /wait cmd /c torrent "http://stackoverflow.com"





share|improve this answer























  • Doesn't this generate the same string as the code Daquaney wrote?

    – mythenmetz
    Mar 9 at 15:49













2












2








2







Use can use built-in str.center:



link = 'http://stackoverflow.com'
print("start /wait cmd /c torrent %s" % link.center(len(link)+2, '"'))

# start /wait cmd /c torrent "http://stackoverflow.com"





share|improve this answer













Use can use built-in str.center:



link = 'http://stackoverflow.com'
print("start /wait cmd /c torrent %s" % link.center(len(link)+2, '"'))

# start /wait cmd /c torrent "http://stackoverflow.com"






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 9 at 5:34









ChrisChris

3,766522




3,766522












  • Doesn't this generate the same string as the code Daquaney wrote?

    – mythenmetz
    Mar 9 at 15:49

















  • Doesn't this generate the same string as the code Daquaney wrote?

    – mythenmetz
    Mar 9 at 15:49
















Doesn't this generate the same string as the code Daquaney wrote?

– mythenmetz
Mar 9 at 15:49





Doesn't this generate the same string as the code Daquaney wrote?

– mythenmetz
Mar 9 at 15:49













1














Quotation marks in shell are interpreted if you do not escape them. To escape them, prepend a backslash. Look here:



os.system("start /wait cmd /c torrent \"\"".format(link))


What happens:




  • \ is interpreted as a single backslash


  • " is interpreted as a quotation mark


  • .format(link) replaces with link, to avoid adding strings (just for the style of code)





share|improve this answer

























  • when I put this in my code it says that the is an invalid syntax

    – Daquaney
    Mar 9 at 4:27











  • Then you are probably using Python 2 and not 3, the formatting syntax there is a bit more complicated, as it can be seen in Chris answer.

    – mythenmetz
    Mar 9 at 15:46
















1














Quotation marks in shell are interpreted if you do not escape them. To escape them, prepend a backslash. Look here:



os.system("start /wait cmd /c torrent \"\"".format(link))


What happens:




  • \ is interpreted as a single backslash


  • " is interpreted as a quotation mark


  • .format(link) replaces with link, to avoid adding strings (just for the style of code)





share|improve this answer

























  • when I put this in my code it says that the is an invalid syntax

    – Daquaney
    Mar 9 at 4:27











  • Then you are probably using Python 2 and not 3, the formatting syntax there is a bit more complicated, as it can be seen in Chris answer.

    – mythenmetz
    Mar 9 at 15:46














1












1








1







Quotation marks in shell are interpreted if you do not escape them. To escape them, prepend a backslash. Look here:



os.system("start /wait cmd /c torrent \"\"".format(link))


What happens:




  • \ is interpreted as a single backslash


  • " is interpreted as a quotation mark


  • .format(link) replaces with link, to avoid adding strings (just for the style of code)





share|improve this answer















Quotation marks in shell are interpreted if you do not escape them. To escape them, prepend a backslash. Look here:



os.system("start /wait cmd /c torrent \"\"".format(link))


What happens:




  • \ is interpreted as a single backslash


  • " is interpreted as a quotation mark


  • .format(link) replaces with link, to avoid adding strings (just for the style of code)






share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 9 at 5:30









Chris

3,766522




3,766522










answered Mar 9 at 4:23









mythenmetzmythenmetz

856




856












  • when I put this in my code it says that the is an invalid syntax

    – Daquaney
    Mar 9 at 4:27











  • Then you are probably using Python 2 and not 3, the formatting syntax there is a bit more complicated, as it can be seen in Chris answer.

    – mythenmetz
    Mar 9 at 15:46


















  • when I put this in my code it says that the is an invalid syntax

    – Daquaney
    Mar 9 at 4:27











  • Then you are probably using Python 2 and not 3, the formatting syntax there is a bit more complicated, as it can be seen in Chris answer.

    – mythenmetz
    Mar 9 at 15:46

















when I put this in my code it says that the is an invalid syntax

– Daquaney
Mar 9 at 4:27





when I put this in my code it says that the is an invalid syntax

– Daquaney
Mar 9 at 4:27













Then you are probably using Python 2 and not 3, the formatting syntax there is a bit more complicated, as it can be seen in Chris answer.

– mythenmetz
Mar 9 at 15:46






Then you are probably using Python 2 and not 3, the formatting syntax there is a bit more complicated, as it can be seen in Chris answer.

– mythenmetz
Mar 9 at 15:46


















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55073917%2fhow-to-add-to-a-string-in-python%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived