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