Wednesday, January 21, 2026
HomeLanguagesPython | Numpy np.disp() method

Python | Numpy np.disp() method

With the help of np.disp() method, we can get the string into a display buffer and by using stringIO class we can get the values from buffer by using np.disp() method.

Syntax : np.disp(message, device)
Return : Will not return anything without StringIO class.

Example #1 :
In this example by using np.disp() method, we are able to collect message from parameter and put that message into display buffer by using this method.




# 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()


Output :

‘Geeks For Geeks\n’

Example #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()


Output :

‘Author “Jitender Kumar”\n’

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32475 POSTS0 COMMENTS
Milvus
119 POSTS0 COMMENTS
Nango Kala
6847 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12064 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7220 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6912 POSTS0 COMMENTS