how to display the type of a csv attribute in python code example
Example 1: python read csv
import pandas as pd
data = pd.read_csv('data.csv')
print(data)
Example 2: read csv python
import pandas as pd
data = pd.read_csv("filename.csv")
data.head()
Example 3: import csv file in python
import pandas as pd
df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
Example 4: python csv writer row by row
import csv
with open(<path to output_csv>, "wb") as csv_file:
writer = csv.writer(csv_file, delimiter=',')
for line in data:
writer.writerow(line)