zip() Function
enamurate() Function
split () Function
len() Function
How to use range function ?
range(start,end,step)
for x in range(1,20,2):
print(x)
Which method is used to sort data of Data Frame Object ?
sort_value() method
Which method is used to display 10 most largest values of column ?
nlargest()
Which method is used to present 10 smallest values of column ?
nsmallest()
How to set order of data while sorting columns ?
We have to use argument ascending = False
Which method is used to filter null values of Data Set ?
dropna ()
Which method is used to create DateFrame from Data Set?
read_csv ()