用法:
Series.to_clipboard(excel=True, sep=None, **kwargs)
將對象複製到係統剪貼板。
將對象的文本表示寫入係統剪貼板。例如,這可以粘貼到 Excel 中。
- excel:布爾值,默認為真
以 csv 格式生成輸出,以便輕鬆粘貼到 Excel 中。
沒錯,使用提供的分隔符進行 csv 粘貼。
False,將對象的字符串表示形式寫入剪貼板。
- sep:
str,默認
'\t'
字段分隔符。
- **kwargs:
這些參數將被傳遞給 DataFrame.to_csv。
參數:
注意:
對您的平台的要求。
Linux:
xclip
, orxsel
(withPyQt4
modules)Windows:none
macOS:none
例子:
將 DataFrame 的內容複製到剪貼板。
>>> df = pd.DataFrame([[1, 2, 3], [4, 5, 6]], columns=['A', 'B', 'C'])
>>> df.to_clipboard(sep=',') ... # Wrote the following to the system clipboard: ... # ,A,B,C ... # 0,1,2,3 ... # 1,4,5,6
我們可以通過傳遞關鍵字
index
並將其設置為 false 來省略索引。>>> df.to_clipboard(sep=',', index=False) ... # Wrote the following to the system clipboard: ... # A,B,C ... # 1,2,3 ... # 4,5,6
相關用法
- Python pandas.Series.to_csv用法及代碼示例
- Python pandas.Series.to_pickle用法及代碼示例
- Python pandas.Series.to_xarray用法及代碼示例
- Python pandas.Series.to_markdown用法及代碼示例
- Python pandas.Series.to_excel用法及代碼示例
- Python pandas.Series.to_numpy用法及代碼示例
- Python pandas.Series.to_latex用法及代碼示例
- Python pandas.Series.to_json用法及代碼示例
- Python pandas.Series.to_hdf用法及代碼示例
- Python pandas.Series.to_sql用法及代碼示例
- Python pandas.Series.to_frame用法及代碼示例
- Python pandas.Series.to_dict用法及代碼示例
- Python pandas.Series.truediv用法及代碼示例
- Python pandas.Series.take用法及代碼示例
- Python pandas.Series.tz_localize用法及代碼示例
- Python pandas.Series.tail用法及代碼示例
- Python pandas.Series.truncate用法及代碼示例
- Python pandas.Series.transform用法及代碼示例
- Python pandas.Series.add_prefix用法及代碼示例
- Python pandas.Series.map用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.to_clipboard。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。