Answers for "how to open data file in python"

1

how to open a file in python

#open any file that is in your folder you are using in your editor
import os
os.startfile('Gamepicture.jfif')
Posted by: Guest on October-04-2020
0

read a data file in python

import pandas as pd

df = pd.read_csv('data.csv')

print(df.to_string())
Posted by: Guest on April-21-2021
2

how to open a file in python

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

Code answers related to "how to open data file in python"

Python Answers by Framework

Browse Popular Code Answers by Language