Answers for "reading input from a file in python"

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
1

how to write a python variable to a file

#use pickle

import pickle
dict = {'one': 1, 'two': 2}
file = open('dump.txt', 'w')
pickle.dump(dict, file)
file.close()

#and to read it again
file = open('dump.txt', 'r')
dict = pickle.load(file)
Posted by: Guest on May-04-2020
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 "reading input from a file in python"

Python Answers by Framework

Browse Popular Code Answers by Language