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;
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
add a comment |
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
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
add a comment |
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
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
python windows
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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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"
Doesn't this generate the same string as the code Daquaney wrote?
– mythenmetz
Mar 9 at 15:49
add a comment |
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)
replaceswith
link
, to avoid adding strings (just for the style of code)
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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"
Doesn't this generate the same string as the code Daquaney wrote?
– mythenmetz
Mar 9 at 15:49
add a comment |
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"
Doesn't this generate the same string as the code Daquaney wrote?
– mythenmetz
Mar 9 at 15:49
add a comment |
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"
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"
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
add a comment |
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
add a comment |
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)
replaceswith
link
, to avoid adding strings (just for the style of code)
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
add a comment |
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)
replaceswith
link
, to avoid adding strings (just for the style of code)
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
add a comment |
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)
replaceswith
link
, to avoid adding strings (just for the style of code)
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)
replaceswith
link
, to avoid adding strings (just for the style of code)
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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