1
0
forked from tdwojak/Python2017

[homework lab6] ready for review

This commit is contained in:
s45155 2018-01-21 13:03:13 +01:00
parent 2077881ae8
commit 8c2bf093de

View File

@ -24,6 +24,7 @@ def most_common_room_number(dane):
pass pass
def cheapest_flats(dane, n): def cheapest_flats(dane, n):
dane2 = dane.sort_values(by=['Expected']) dane2 = dane.sort_values(by=['Expected'])
return(dane2.head(n)) return(dane2.head(n))