Hey!
I would like to see that 1==1 is True. It just shows nothing. How can i fix this ? Any Packages?
Thanks!
Hey!
I would like to see that 1==1 is True. It just shows nothing. How can i fix this ? Any Packages?
Thanks!
Wrap it in a print()
call or use an interactive interpreter (I. E. python
on the terminal.
So, it seems Sublime Text is different than what you’re expecting. It sounds like you’re used to opening Python’s REPL (Read, Evaluate, Print, Loop), where you type in a command, hit enter, and see the result.
Sublime is a text editor. It allows you to create .py
files you can run in a python interpreter.
However, there is a package called SublimeREPL that allows you to have a REPL in Sublime.
I hope you enjoy it least as much as I have over the last few years!