Getting and importing data Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Which command you use if you want to split an emailadress and only want the part befor the @

A

.split(“@”)[0]

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

Import a datalink into pandas with a delimiter. What is a delimiter goood for?

A

pd.read_csv(“… . .. . .”, delimiter=”,”)

a delimiter specifies the boundary betwwen two independent data variables

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