How To Create Pandas Dataframe From Clipboard
Category:
pd.read_clipboard() builds a DataFrame straight from whatever you last copied, so a table selected in Excel or on a web page becomes a DataFrame without saving a file first. Handy for quick exploration, and it takes the same separator arguments as read_csv.
import pandas as pd df = pd.read.clip_board()
