當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas Series.to_clipboard()用法及代碼示例


Pandas 係列是帶有軸標簽的一維ndarray。標簽不必是唯一的,但必須是可哈希的類型。該對象同時支持基於整數和基於標簽的索引,並提供了許多方法來執行涉及索引的操作。

Pandas Series.to_clipboard()函數將對象複製到係統剪貼板。它將對象的文本表示形式寫入係統剪貼板。也可以將其粘貼到Excel中。

用法: Series.to_clipboard(excel=True, sep=None, **kwargs)

參數:
excel:布爾值,默認為True
sep:str,默認為“ \ t”
** kwargs:這些參數將傳遞到DataFrame.to_csv。

返回:沒有

範例1:采用Series.to_clipboard()函數將給定的Series對象複製到係統剪貼板。

# importing pandas as pd 
import pandas as pd 
  
# Creating the Series 
sr = pd.Series(['New York', 'Chicago', 'Toronto', 'Lisbon', 'Rio', 'Moscow']) 
  
# Create the Datetime Index 
didx = pd.DatetimeIndex(start ='2014-08-01 10:00', freq ='W',  
                     periods = 6, tz = 'Europe/Berlin')  
  
# set the index 
sr.index = didx 
  
# Print the series 
print(sr)

輸出:

現在我們將使用Series.to_clipboard()函數將給定的係列對象複製到係統剪貼板。

# copy to clipboard 
sr.to_clipboard()

輸出:

執行完最後一行代碼後,我們隻需將複製的內容粘貼到Notepad ++中的係統剪貼板中即可。這就是它的樣子。

範例2:采用Series.to_clipboard()函數將給定的Series對象複製到係統剪貼板。


# importing pandas as pd 
import pandas as pd 
  
# Creating the Series 
sr = pd.Series([19.5, 16.8, None, 22.78, None, 20.124, None, 18.1002, None]) 
  
# Print the series 
print(sr)

輸出:

現在我們將使用Series.to_clipboard()函數將給定的係列對象複製到係統剪貼板。

# copy to clipboard 
sr.to_clipboard()

輸出:

執行完最後一行代碼後,我們隻需將複製的內容粘貼到Notepad ++中的係統剪貼板中即可。這就是它的樣子。請注意,缺失值是如何表示為空白的。



相關用法


注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas Series.to_clipboard()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。