BaşlayınÜcretsiz Başlayın

The .head() method

It's great to see your data, but most times not all at once. Imagine if you have 10,000 rows printing to the console at once. No good!

To quickly and easily display the first few rows of our data, we can use the .head() method.

Bu egzersiz

Python for Spreadsheet Users

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Import the pandas package as pd
import pandas as pd

# Read in the Excel file
sales = pd.read_excel('ticket_sales.xlsx')

# Print first 5 rows of the DataFrame
print(sales.____())
Kodu Düzenle ve Çalıştır