modify my code and save it as a text file inside a function using python3Why is there no xrange function in Python3?How can I view the source code for a function?Making a function to save a list to a .txt fileHow can I save output tho the same file that I have got the data from, in Python 3Output/save a certain string within a text filePrinting lists in columns from a text filePython file read and savecannot store the variable into new one when I used the readline function in python3Print output to separate text filesApply regex to text files and save result in dictionary python

Why doesn't Anakin's lightsaber explode when it's chopped in half on Geonosis?

Is this more than a packing puzzle?

Hot object in a vacuum

What is the German equivalent of 干物女 (dried fish woman)?

Concatenation using + and += operator in Python

Is `curl something | sudo bash -` a reasonably safe installation method?

What is the English equivalent of 干物女 (dried fish woman)?

Does entangle require vegetation?

Possible isometry groups of open manifolds

How to draw a gif with expanding circles that reveal lines connecting a non-centered point to the expanding circle using Tikz

How do I define this subset using mathematical notation?

Nested-Loop-Join: How many comparisons and how many pages-accesses?

How can I legally visit the United States Minor Outlying Islands in the Pacific?

Can I activate an iPhone without an Apple ID?

HackerRank: Electronics Shop

How to make "plastic" sounding distored guitar

Ezek. 24:1-2, "Again in the ninth year, in the tenth month, in the tenth day of the month, ...." Which month was the tenth month?

Is killing off one of my queer characters homophobic?

Add buffer space on line wraps

Would letting a multiclass character rebuild their character to be single-classed be game-breaking?

Will it hurt my career to work as a graphic designer in a startup for beauty and skin care?

I quit, and boss offered me 3 month "grace period" where I could still come back

Why do candidates not quit if they no longer have a realistic chance to win in the 2020 US presidents election

Integral clarification



modify my code and save it as a text file inside a function using python3


Why is there no xrange function in Python3?How can I view the source code for a function?Making a function to save a list to a .txt fileHow can I save output tho the same file that I have got the data from, in Python 3Output/save a certain string within a text filePrinting lists in columns from a text filePython file read and savecannot store the variable into new one when I used the readline function in python3Print output to separate text filesApply regex to text files and save result in dictionary python






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















How to read a list and save it in a text file inside a one function using python3? please someone help me



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"] 

def create_file(file_name):
for i in string:
with open(file_name, "w") as input_file:
print(" ".format(i), file = input_file)

def read_file(file_name):
create_file(file_name)
input_file = open(file_name, 'r')
read_file('file.txt')

with open('file.txt','r') as f:
input_file = f.readlines()


Expected Output: (in text file)



my name is john
my anniversary is on 04/01/1997
yes
ok









share|improve this question
























  • You have a lot of illogical, almost random bits and pieces in your code. Try to write your code in English first: what should be done and in what order?

    – DYZ
    Mar 26 at 6:27











  • made changes please see my above code and want to save a list in text file inside a function

    – Python_beginner
    Mar 26 at 6:39


















0















How to read a list and save it in a text file inside a one function using python3? please someone help me



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"] 

def create_file(file_name):
for i in string:
with open(file_name, "w") as input_file:
print(" ".format(i), file = input_file)

def read_file(file_name):
create_file(file_name)
input_file = open(file_name, 'r')
read_file('file.txt')

with open('file.txt','r') as f:
input_file = f.readlines()


Expected Output: (in text file)



my name is john
my anniversary is on 04/01/1997
yes
ok









share|improve this question
























  • You have a lot of illogical, almost random bits and pieces in your code. Try to write your code in English first: what should be done and in what order?

    – DYZ
    Mar 26 at 6:27











  • made changes please see my above code and want to save a list in text file inside a function

    – Python_beginner
    Mar 26 at 6:39














0












0








0


1






How to read a list and save it in a text file inside a one function using python3? please someone help me



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"] 

def create_file(file_name):
for i in string:
with open(file_name, "w") as input_file:
print(" ".format(i), file = input_file)

def read_file(file_name):
create_file(file_name)
input_file = open(file_name, 'r')
read_file('file.txt')

with open('file.txt','r') as f:
input_file = f.readlines()


Expected Output: (in text file)



my name is john
my anniversary is on 04/01/1997
yes
ok









share|improve this question
















How to read a list and save it in a text file inside a one function using python3? please someone help me



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"] 

def create_file(file_name):
for i in string:
with open(file_name, "w") as input_file:
print(" ".format(i), file = input_file)

def read_file(file_name):
create_file(file_name)
input_file = open(file_name, 'r')
read_file('file.txt')

with open('file.txt','r') as f:
input_file = f.readlines()


Expected Output: (in text file)



my name is john
my anniversary is on 04/01/1997
yes
ok






python-3.x function call






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 6:47







Python_beginner

















asked Mar 26 at 6:22









Python_beginnerPython_beginner

546 bronze badges




546 bronze badges












  • You have a lot of illogical, almost random bits and pieces in your code. Try to write your code in English first: what should be done and in what order?

    – DYZ
    Mar 26 at 6:27











  • made changes please see my above code and want to save a list in text file inside a function

    – Python_beginner
    Mar 26 at 6:39


















  • You have a lot of illogical, almost random bits and pieces in your code. Try to write your code in English first: what should be done and in what order?

    – DYZ
    Mar 26 at 6:27











  • made changes please see my above code and want to save a list in text file inside a function

    – Python_beginner
    Mar 26 at 6:39

















You have a lot of illogical, almost random bits and pieces in your code. Try to write your code in English first: what should be done and in what order?

– DYZ
Mar 26 at 6:27





You have a lot of illogical, almost random bits and pieces in your code. Try to write your code in English first: what should be done and in what order?

– DYZ
Mar 26 at 6:27













made changes please see my above code and want to save a list in text file inside a function

– Python_beginner
Mar 26 at 6:39






made changes please see my above code and want to save a list in text file inside a function

– Python_beginner
Mar 26 at 6:39













1 Answer
1






active

oldest

votes


















1














Based on your expected output, this is the code.



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"]

def create_file(file_name):
with open(file_name, "w") as input_file:
for sentence in string:
# Append new line and write
input_file.write(sentence + 'n')

file_name = "your_filename.txt"

create_file(file_name)





share|improve this answer

























  • thank u so much but text file saved as in what name?

    – Python_beginner
    Mar 26 at 6:55











  • Suggest looking up your basics in python. Whatever string you assign to filename. filename = "file.txt"

    – thatNLPguy
    Mar 26 at 6:58











  • if i m giving like that i got error as filename not defined error

    – Python_beginner
    Mar 26 at 7:07











  • thank u so much sir/madam really i m very happy

    – Python_beginner
    Mar 26 at 7:19











  • You're welcome. Hang in there. It'll get easier.

    – thatNLPguy
    Mar 26 at 7: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%2f55350948%2fmodify-my-code-and-save-it-as-a-text-file-inside-a-function-using-python3%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Based on your expected output, this is the code.



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"]

def create_file(file_name):
with open(file_name, "w") as input_file:
for sentence in string:
# Append new line and write
input_file.write(sentence + 'n')

file_name = "your_filename.txt"

create_file(file_name)





share|improve this answer

























  • thank u so much but text file saved as in what name?

    – Python_beginner
    Mar 26 at 6:55











  • Suggest looking up your basics in python. Whatever string you assign to filename. filename = "file.txt"

    – thatNLPguy
    Mar 26 at 6:58











  • if i m giving like that i got error as filename not defined error

    – Python_beginner
    Mar 26 at 7:07











  • thank u so much sir/madam really i m very happy

    – Python_beginner
    Mar 26 at 7:19











  • You're welcome. Hang in there. It'll get easier.

    – thatNLPguy
    Mar 26 at 7:46















1














Based on your expected output, this is the code.



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"]

def create_file(file_name):
with open(file_name, "w") as input_file:
for sentence in string:
# Append new line and write
input_file.write(sentence + 'n')

file_name = "your_filename.txt"

create_file(file_name)





share|improve this answer

























  • thank u so much but text file saved as in what name?

    – Python_beginner
    Mar 26 at 6:55











  • Suggest looking up your basics in python. Whatever string you assign to filename. filename = "file.txt"

    – thatNLPguy
    Mar 26 at 6:58











  • if i m giving like that i got error as filename not defined error

    – Python_beginner
    Mar 26 at 7:07











  • thank u so much sir/madam really i m very happy

    – Python_beginner
    Mar 26 at 7:19











  • You're welcome. Hang in there. It'll get easier.

    – thatNLPguy
    Mar 26 at 7:46













1












1








1







Based on your expected output, this is the code.



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"]

def create_file(file_name):
with open(file_name, "w") as input_file:
for sentence in string:
# Append new line and write
input_file.write(sentence + 'n')

file_name = "your_filename.txt"

create_file(file_name)





share|improve this answer















Based on your expected output, this is the code.



string=["my name is john"," my anniversary is on 04/01/1997","yes","ok"]

def create_file(file_name):
with open(file_name, "w") as input_file:
for sentence in string:
# Append new line and write
input_file.write(sentence + 'n')

file_name = "your_filename.txt"

create_file(file_name)






share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 26 at 7:18

























answered Mar 26 at 6:53









thatNLPguythatNLPguy

1018 bronze badges




1018 bronze badges












  • thank u so much but text file saved as in what name?

    – Python_beginner
    Mar 26 at 6:55











  • Suggest looking up your basics in python. Whatever string you assign to filename. filename = "file.txt"

    – thatNLPguy
    Mar 26 at 6:58











  • if i m giving like that i got error as filename not defined error

    – Python_beginner
    Mar 26 at 7:07











  • thank u so much sir/madam really i m very happy

    – Python_beginner
    Mar 26 at 7:19











  • You're welcome. Hang in there. It'll get easier.

    – thatNLPguy
    Mar 26 at 7:46

















  • thank u so much but text file saved as in what name?

    – Python_beginner
    Mar 26 at 6:55











  • Suggest looking up your basics in python. Whatever string you assign to filename. filename = "file.txt"

    – thatNLPguy
    Mar 26 at 6:58











  • if i m giving like that i got error as filename not defined error

    – Python_beginner
    Mar 26 at 7:07











  • thank u so much sir/madam really i m very happy

    – Python_beginner
    Mar 26 at 7:19











  • You're welcome. Hang in there. It'll get easier.

    – thatNLPguy
    Mar 26 at 7:46
















thank u so much but text file saved as in what name?

– Python_beginner
Mar 26 at 6:55





thank u so much but text file saved as in what name?

– Python_beginner
Mar 26 at 6:55













Suggest looking up your basics in python. Whatever string you assign to filename. filename = "file.txt"

– thatNLPguy
Mar 26 at 6:58





Suggest looking up your basics in python. Whatever string you assign to filename. filename = "file.txt"

– thatNLPguy
Mar 26 at 6:58













if i m giving like that i got error as filename not defined error

– Python_beginner
Mar 26 at 7:07





if i m giving like that i got error as filename not defined error

– Python_beginner
Mar 26 at 7:07













thank u so much sir/madam really i m very happy

– Python_beginner
Mar 26 at 7:19





thank u so much sir/madam really i m very happy

– Python_beginner
Mar 26 at 7:19













You're welcome. Hang in there. It'll get easier.

– thatNLPguy
Mar 26 at 7:46





You're welcome. Hang in there. It'll get easier.

– thatNLPguy
Mar 26 at 7:46








Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with 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%2f55350948%2fmodify-my-code-and-save-it-as-a-text-file-inside-a-function-using-python3%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권, 지리지 충청도 공주목 은진현