Python| Numpy np.disp() 方法
在np.disp()
方法的帮助下,我们可以将字符串放入显示缓冲区,并且通过使用 stringIO 类,我们可以使用np.disp()
方法从缓冲区中获取值。
Syntax : np.disp(message, device)
Return : Will not return anything without StringIO class.
示例 #1:
在这个例子中,通过使用np.disp()
方法,我们可以从参数中收集消息,并使用该方法将该消息放入显示缓冲区。
# import numpy and stringIO
import numpy as np
from io import StringIO
buf = StringIO()
# using np.disp() method
np.disp(u'Geeks For Geeks', device = buf)
buf.getvalue()
输出 :
‘Geeks For Geeks\n’
示例 #2:
# import numpy and stringIO
import numpy as np
from io import StringIO
buf = StringIO()
# using np.disp() method
np.disp(u'Author "Jitender Kumar"', device = buf)
buf.getvalue()
输出 :
‘Author “Jitender Kumar”\n’