Skip to content

Commit f9f6606

Browse files
committed
🔁 Edit py 🐍
1 parent 13bdbec commit f9f6606

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Examples/Print_Rows_from_DataFrame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
df = pd.read_csv("new_york_city.csv")
44

5-
# Prints the first 10 Rows, sorted by Start Time
5+
# Print 10 Rows from Dateframe with Integer Index from 10-20
66

7-
print(df.iloc[0:10].sort_values(["Start Time"]))
7+
print(df.iloc[10:20])

0 commit comments

Comments
 (0)