If I use a serial terminal, the following code shows the result (1) ``` a = 1 a ``` However, if I use MicroPython-USB kernel in Jupygter notebook, I have to use the 'print()' function to display the result as follows. ``` a = 1 print(a) ``` There is any method to display variable without print() function like normal serial terminal.