Sublime Forum

Sublime text not working

#1

I have made this simple calculator, but its showing this

I am also very new to the world of coding so pls dont make fun of my simple calculator script

Thanks, (pls send help, lmao)

0 Likes

#2

You’ve made 2 errors.

  1. You didn’t save the file. Therefore python can’t find your script.
  2. You can’t use input() function as the build system can only output text. It doesn’t support interactive shell scripts. Plenty discussions about it can be found via https://forum.sublimetext.com/search?q=python%20input
0 Likes