本文簡要介紹 python 語言中 numpy.disp
的用法。
用法:
numpy.disp(mesg, device=None, linefeed=True)
在設備上顯示消息。
- mesg: str
要顯示的消息。
- device: 對象
寫入消息的設備。如果沒有,則默認為
sys.stdout
這非常類似於print
.設備需要有write()
和flush()
方法。- linefeed: 布爾型,可選
選擇是否打印換行符。默認為真。
- AttributeError
如果設備沒有
write()
或者flush()
方法。
參數:
拋出:
例子:
除了
sys.stdout
之外,還可以使用 file-like 對象,因為它具有兩種必需的方法:>>> from io import StringIO >>> buf = StringIO() >>> np.disp(u'"Display" in a file', device=buf) >>> buf.getvalue() '"Display" in a file\n'
相關用法
- Python numpy diagonal用法及代碼示例
- Python numpy divmod用法及代碼示例
- Python numpy diagflat用法及代碼示例
- Python numpy divide用法及代碼示例
- Python numpy diag用法及代碼示例
- Python numpy digitize用法及代碼示例
- Python numpy diag_indices用法及代碼示例
- Python numpy diff用法及代碼示例
- Python numpy dtype.isbuiltin用法及代碼示例
- Python numpy dtype.shape用法及代碼示例
- Python numpy dtype.ndim用法及代碼示例
- Python numpy dtype.alignment用法及代碼示例
- Python numpy dtype用法及代碼示例
- Python numpy dtype.names用法及代碼示例
- Python numpy dtype.__class_getitem__用法及代碼示例
- Python numpy dtype.flags用法及代碼示例
- Python numpy dtype.fields用法及代碼示例
- Python numpy dtype.subdtype用法及代碼示例
- Python numpy delete用法及代碼示例
- Python numpy dtype.descr用法及代碼示例
- Python numpy dec.setastest用法及代碼示例
- Python numpy datetime_as_string用法及代碼示例
- Python numpy dtype.kind用法及代碼示例
- Python numpy dtype.metadata用法及代碼示例
- Python numpy dsplit用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.disp。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。