0

Possible Duplicate:
Python 3.1 and Sublime Text 2 error
Sublime Text 2 console input

I just got Sublime Text on my Mac and I'm trying to run simple code with Python, but I don't know how to do it.

print "hello"

This would run when I press Cmd+B (Build), to output hello

s = input('How are you?')

But when I try to run this, I would always get an error.

Help please???

Community
  • 1
  • 1
Fiona Kwok
  • 87
  • 2
  • 8

1 Answers1

3

I think you intended to do: s = raw_input('How are you?')