the code:
from ctypes import *
libc = cdll.LoadLibrary('msvcrt.dll')
libc.printf(c_char_p(b'Hello %d %.2f\n'), c_int(16), c_double(2.3))
output from standart python:
Hello 16 2.30
14
output from ipython:
Hello 16 2.30
Out[31]: 14
output from jupyter:
Out[15]: 14
How to make jupyter display “Hello 16 2.30”?