Python writes questions instead of string to fileHow do I check whether a file exists without exceptions?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?Python join: why is it string.join(list) instead of list.join(string)?How do I list all files of a directory?Does Python have a string 'contains' substring method?
CPU overheating in Ubuntu 18.04
Are there any double stars that I can actually see orbit each other?
What is this welding tool I found in my attic?
Can anybody provide any information about this equation?
Does Google Maps take into account hills/inclines for route times?
Why doesn't the Lars family (and thus Luke) speak Huttese as their first language?
Is it rude to tell recruiters I would only change jobs for a better salary?
Why would guns not work in the dungeon?
What would be the ideal melee weapon made of "Phase Metal"?
Why is the total number of hard disk sectors shown in fdisk not the same as theoretical calculation?
Metric version of "footage"?
Why does the autopilot disengage even when it does not receive pilot input?
Do native speakers use ZVE or CPU?
What does `[$'rn']` mean?
Was the Ford Model T black because of the speed black paint dries?
How can I legally visit the United States Minor Outlying Islands in the Pacific?
Back to the nineties!
In which ways do anagamis still experience ignorance?
How can an advanced civilization forget how to manufacture its technology?
Bob's unnecessary trip to the shops
Draw 3D Cubes around centre
does ability to impeach an expert witness on science or scholarship go too far?
Is a public company able to check out who owns its shares in very detailed format?
How do Windows version numbers work?
Python writes questions instead of string to file
How do I check whether a file exists without exceptions?Calling an external command in PythonWhat are metaclasses in Python?Finding the index of an item given a list containing it in PythonWhat is the difference between Python's list methods append and extend?How can I safely create a nested directory?Does Python have a ternary conditional operator?Python join: why is it string.join(list) instead of list.join(string)?How do I list all files of a directory?Does Python have a string 'contains' substring method?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to write data from API to file, but i get weird characters written to file instead of string
import requests
end_url = url `+ "?key=" + api_key + "&lang=en-ru" + "&text=" + "Hello
world"
response = requests.get(end_url)
str = response.json()["text"][0]
print(type(str)) # class 'str'
print(str) # string that i want to write to file
file = open("translate.txt", 'r+')
file.write(str)
It should write string which i get from API to file, but it writes this:
�����`
python writetofile
add a comment |
I want to write data from API to file, but i get weird characters written to file instead of string
import requests
end_url = url `+ "?key=" + api_key + "&lang=en-ru" + "&text=" + "Hello
world"
response = requests.get(end_url)
str = response.json()["text"][0]
print(type(str)) # class 'str'
print(str) # string that i want to write to file
file = open("translate.txt", 'r+')
file.write(str)
It should write string which i get from API to file, but it writes this:
�����`
python writetofile
1
Tryfile = open("translate.txt", 'r+', encoding='utf-8')
– Arkistarvh Kltzuonstev
Mar 26 at 5:59
print(str)
A sample of it?
– DirtyBit
Mar 26 at 6:00
may be you are receiving bytes , what is the api you are using ?
– anilkunchalaece
Mar 26 at 6:01
pistol2myhead's comment answered my question, thanks everyone!
– E.Belekov
Mar 26 at 6:02
add a comment |
I want to write data from API to file, but i get weird characters written to file instead of string
import requests
end_url = url `+ "?key=" + api_key + "&lang=en-ru" + "&text=" + "Hello
world"
response = requests.get(end_url)
str = response.json()["text"][0]
print(type(str)) # class 'str'
print(str) # string that i want to write to file
file = open("translate.txt", 'r+')
file.write(str)
It should write string which i get from API to file, but it writes this:
�����`
python writetofile
I want to write data from API to file, but i get weird characters written to file instead of string
import requests
end_url = url `+ "?key=" + api_key + "&lang=en-ru" + "&text=" + "Hello
world"
response = requests.get(end_url)
str = response.json()["text"][0]
print(type(str)) # class 'str'
print(str) # string that i want to write to file
file = open("translate.txt", 'r+')
file.write(str)
It should write string which i get from API to file, but it writes this:
�����`
python writetofile
python writetofile
asked Mar 26 at 5:58
E.BelekovE.Belekov
33 bronze badges
33 bronze badges
1
Tryfile = open("translate.txt", 'r+', encoding='utf-8')
– Arkistarvh Kltzuonstev
Mar 26 at 5:59
print(str)
A sample of it?
– DirtyBit
Mar 26 at 6:00
may be you are receiving bytes , what is the api you are using ?
– anilkunchalaece
Mar 26 at 6:01
pistol2myhead's comment answered my question, thanks everyone!
– E.Belekov
Mar 26 at 6:02
add a comment |
1
Tryfile = open("translate.txt", 'r+', encoding='utf-8')
– Arkistarvh Kltzuonstev
Mar 26 at 5:59
print(str)
A sample of it?
– DirtyBit
Mar 26 at 6:00
may be you are receiving bytes , what is the api you are using ?
– anilkunchalaece
Mar 26 at 6:01
pistol2myhead's comment answered my question, thanks everyone!
– E.Belekov
Mar 26 at 6:02
1
1
Try
file = open("translate.txt", 'r+', encoding='utf-8')
– Arkistarvh Kltzuonstev
Mar 26 at 5:59
Try
file = open("translate.txt", 'r+', encoding='utf-8')
– Arkistarvh Kltzuonstev
Mar 26 at 5:59
print(str)
A sample of it?– DirtyBit
Mar 26 at 6:00
print(str)
A sample of it?– DirtyBit
Mar 26 at 6:00
may be you are receiving bytes , what is the api you are using ?
– anilkunchalaece
Mar 26 at 6:01
may be you are receiving bytes , what is the api you are using ?
– anilkunchalaece
Mar 26 at 6:01
pistol2myhead's comment answered my question, thanks everyone!
– E.Belekov
Mar 26 at 6:02
pistol2myhead's comment answered my question, thanks everyone!
– E.Belekov
Mar 26 at 6:02
add a comment |
0
active
oldest
votes
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%2f55350688%2fpython-writes-questions-instead-of-string-to-file%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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%2f55350688%2fpython-writes-questions-instead-of-string-to-file%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
Try
file = open("translate.txt", 'r+', encoding='utf-8')
– Arkistarvh Kltzuonstev
Mar 26 at 5:59
print(str)
A sample of it?– DirtyBit
Mar 26 at 6:00
may be you are receiving bytes , what is the api you are using ?
– anilkunchalaece
Mar 26 at 6:01
pistol2myhead's comment answered my question, thanks everyone!
– E.Belekov
Mar 26 at 6:02