Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used this small piece of code and it showed I have a syntax error :

I am a python newbie , can anyone help me with this part of code. A very simple beginners program :

#display

def display(val):

    print("the number ",val)

#main program
while True:

    val = input("Enter an integer between 0 and 9 or -1 to quit") ;
    if val == '-1':
        break 
    if val <= '0' & val >= '9':
        display(val)

it's showing an error in val =< '0' part

sorry that was a very bad typo from my part , I will edit the question will the traceback:

Traceback (most recent call last):
  File "C:\Users\****\Desktop\ra2\ra.2.py", line 16, in <module>
    if val <= '0' & val >= '9':
TypeError: unsupported operand type(s) for &: 'str' and 'str'
share|improve this question
What error? Please post the traceback. – Snakes and Coffee Feb 8 at 7:24
It`s <=, not =<. – Class Stacker Feb 8 at 7:25
1  
Note that you can use '0' <= val <= '9', since Python allows you to chain comparison operators that way. – Dietrich Epp Feb 8 at 7:30

4 Answers

up vote 4 down vote accepted

if val =< '0' && val >= '9'

should be:

if val >= '0' and val <= '9',

or simplier:

if '0' <= val <= '9'

share|improve this answer
Aaaahhhh the only one so far who found the second error as well. Congrats! – Class Stacker Feb 8 at 7:30

Wrong order. Instead of =< it should be <=:

val <= '0'

and and instead of &:

if val <= '0' and val >= '9':
share|improve this answer
This only fixes one error. There is also an && in there that should be and – Gareth Webber Feb 8 at 7:40
@GarethWebber Of course, missed that. – freakish Feb 8 at 7:42

This line here:

if val =< '0' & val >= '9':

Should be:

if val >= '0' and val <= '9':

Note the way the greater than and less than signs are, and the use of the word and rather than &.

share|improve this answer

this works:

def display(val):

    print("the number ",val)

#main program
while True:

    val = input("Enter an integer between 0 and 9 or -1 to quit") ;
    if val == -1:
        break
    if val >= 0 and val <= 9:
        display(val)
share|improve this answer
it still is giving the traceback error ! – novice7 Feb 8 at 7:34
1  
it works fine on my mac. here is a screenshot showing exactly how i executed this code. i.imgur.com/punQRjf.png – SeanPlusPlus Feb 8 at 7:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.