logo

Crowdly

Browser

Add to Chrome

Questions Bank (1400744 total)

I have a dataset in the form of a csv file. Which package should we use to work with these data in python?
0%
0%
0%
100%
View this question
I want to store the population's size of 10 countries. Which data container should I use?
0%
100%
0%
0%
View this question
What are the keys of the following dictionary?

capitals = {'Spain': 'Madrid', 'France': 'Paris'}

0%
0%
100%
0%
View this question

Ordnen Sie die Vorteile den Aspekten eines Pitches zu.

View this question
I have a dataset in the form of a csv file 'data.csv'. I want to construct a pandas dataframe out of it. However, I want pandas to use the first column of my csv file to be the index of the dataframe. Which command should I use?
100%
100%
0%
0%
View this question
I have a dataset in the form of a csv file 'data.csv'. Which command can I use to import my data into my python environement?
0%
0%
0%
0%
View this question

Was passt hier besser, Pitch oder klassische Präsentation?

Sie müssen in kurzer Zeit eine Idee vor einem Publikum präsentieren. 

View this question
What is the output of the following commands?

capitals = {'Spain': 'Madrid', 'France': 'Paris'}

del(capitals['Madrid'])

capitals

17%
67%
17%
0%
View this question
What is the output of the following commands?

capitals = {'Spain': 'Madrid', 'France': 'Paris'}

'Madrid' in capitals

0%
0%
0%
0%
View this question
What is the output of the following commands?

capitals = {'Spain': 'Madrid', 'France': 'Paris'}

capitals['Italy'] = 'Rome'

capitals

100%
0%
0%
0%
View this question