Answers for "how to take file input in python"

73

python write to file

file = open(“testfile.txt”,”w”) 
 
file.write(“Hello World”) 
file.write(“This is our new text file”) 
file.write(“and this is another line.”) 
file.write(“Why? Because we can.”) 
 
file.close() 
Posted by: Guest on December-09-2019
2

file input python

# import fileinput 
import fileinput 
  
# Using fileinput.input() method 
for line in fileinput.input(files ='gfg.txt'): 
    print(line)
Posted by: Guest on February-19-2021
0

read file from form input type filepython

>>> secure_filename('../../../../home/username/.bashrc')
'home_username_.bashrc'
Posted by: Guest on October-23-2020

Code answers related to "how to take file input in python"

Python Answers by Framework

Browse Popular Code Answers by Language