Python Functions Flashcards

1
Q

zip() Function

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

enamurate() Function

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

split () Function

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

len() Function

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How to use range function ?

A

range(start,end,step)
for x in range(1,20,2):
print(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which method is used to sort data of Data Frame Object ?

A

sort_value() method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which method is used to display 10 most largest values of column ?

A

nlargest()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which method is used to present 10 smallest values of column ?

A

nsmallest()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How to set order of data while sorting columns ?

A

We have to use argument ascending = False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which method is used to filter null values of Data Set ?

A

dropna ()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which method is used to create DateFrame from Data Set?

A

read_csv ()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly