Answers for "file input 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
7

read and write to file python

file = open(“testfile.txt”, “r+”) 
Posted by: Guest on May-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language