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;








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:
�����`










share|improve this question

















  • 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

















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:
�����`










share|improve this question

















  • 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













0












0








0


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:
�����`










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 5:58









E.BelekovE.Belekov

33 bronze badges




33 bronze badges







  • 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












  • 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







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












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
);



);













draft saved

draft discarded


















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.



















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%2f55350688%2fpython-writes-questions-instead-of-string-to-file%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

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현