Re: compare items in list to x

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Pete Kirkham

    #1

    Re: compare items in list to x

    2 is not equal to '2'
  • asit

    #2
    Re: compare items in list to x

    On Nov 2, 9:54 pm, "Pete Kirkham" <mach....@gmail .comwrote:
    2 is not equal to '2'
    As the error is correctly marked, u have to convert '2' to 2 by using
    int() function

    so the write code is

    x = 2

    def compare():
    for y in ['12', '33', '2']:
    y=int(y) #string '2' is converted to int 2
    if x < y:
    print x, "is less than", y
    elif x y:
    print x, "is greater than", y
    else:
    print x, "and", y, "are equal"

    compare()

    Regards
    Asit Dhal

    Comment

    Working...