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;
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
add a comment |
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
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
add a comment |
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
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
python-3.x function call
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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)
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
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%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
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)
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
add a comment |
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)
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
add a comment |
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)
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)
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
add a comment |
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
add a comment |
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.
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%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
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
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