Answers for "opening documents through python"

18

open text file in python

f=open("Diabetes.txt",'r')
f.read()
Posted by: Guest on April-25-2020
2

how to open a file in python

open("filename" , "mode")
# do whatever you want to do!!
Posted by: Guest on August-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language