Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created September 28, 2021 07:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/e096e38f0c6874c97dfcb31d279489a3 to your computer and use it in GitHub Desktop.
Save amankharwal/e096e38f0c6874c97dfcb31d279489a3 to your computer and use it in GitHub Desktop.
import pandas as pd
data = pd.DataFrame({"Items": ["AC", "TV", "AC",
"TV", "AC", "TV", "AC"],
"Price": [20000, 18000, 18500,
17000, 18000, 17000, 16000]})
print(data.head())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment