whats wrong?!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Kevin Baldwin
    New Member
    • Jan 2012
    • 1

    whats wrong?!

    I am a bit pathetic it seems, I'm trying to get it to run but it won't even do something as simple as

    print"jello"

    it keeps giving me a syntax error on the second paranthesis... aren't you supposed to put it there?
  • bvdet
    Recognized Expert Specialist
    • Oct 2006
    • 2851

    #2
    What are you trying to run? You are not giving us any information. In Pythonwin interactive window:
    Code:
    >>> print"jello"
    jello
    >>>

    Comment

    • Smygis
      New Member
      • Jun 2007
      • 126

      #3
      Code:
      print("jello")
      If you are using python 3.x.

      Comment

      Working...