notebook.community
Edit and run
In [1]: print('hello world')
print('hello world')
hello world
In [3]: print(100)
print(100)
100
In [4]: print(123.7)
print(123.7)
123.7