pandas.read_clipboard#
- pandas.read_clipboard(sep='\\s+', **kwargs)[source]#
- Read text from clipboard and pass to read_csv. - Parameters
- sepstr, default ‘s+’
- A string or regex delimiter. The default of ‘s+’ denotes one or more whitespace characters. 
- **kwargs
- See read_csv for the full argument list. 
 
- Returns
- DataFrame
- A parsed DataFrame object.