Which function do you use to print the names of all columns in a data frame?
Answers
Answered by
0
print a Data frame... When quoted =True only the entires and quoted not the row names nor the column names.
Answered by
0
Data Frame is a main object of pandas. It is used to represent tabular data (with rows and columns)
print (col)
function is used to print the names of all columns in a data frame
Similar questions