Instruction
Alright! After loading the data, you want to determine how many rows there are in the dataset. To do so, we can simply use the len() function. It takes one argument, the DataFrame you want to check.
len(hospitals)
Exercise
Check how many rows the eu_states DataFrame has.



