Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8335559
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T03:42:43+00:00 2026-06-09T03:42:43+00:00

Possible Duplicate: How does Python compare string and int? I had a Python script

  • 0

Possible Duplicate:
How does Python compare string and int?

I had a Python script that wasn’t evaluating two values as expected. The value '10' was determined as being greater than 200. The issue was the variable holding the value of ’10’ was actually a string and not an integer (whereas 200 was an integer).

My question is:

What is the process Python goes through when evaluating a string against an integer? How does it make the comparison?

For example:

string="10"
int=200
if string >= int:
  print("String is greater")
else:
  print("Int is greater")

Would output:

String is greater

Why is this? I would have thought Python would just exit with an error when trying to compare the two types.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T03:42:45+00:00Added an answer on June 9, 2026 at 3:42 am

    Python 2.x allows comparing objects of any type, and guarantees that results are reprroducible. In Python 3.x, comparing objects that cannot be ordered meaningfully results in an error. The rationale for the 2.x behaviour was that it is sometimes convenient to be able to list.sort() heterogeneous lists. The rationale for the new 3.x behaviour is that the old behaviour hid errors.

    The ordering used by Python 2.x is an implementation detail. CPython uses some rather strange rules, roughly

    NoneType < numbers < old-style classes, ordered by name < new-style classes, ordered by name

    (No guarantees that I got this right, but I won’t bother to check. It’s an implemetation detail, don’t rely on it.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How does Python compare string and int? Can any one explain the
Possible Duplicate: How does Python compare string and int? An intern was just asking
Possible Duplicate: How does Python compare string and int? I was doing some comparison
Possible Duplicate: Creating constant in Python Does Python support constants that are enforced by
Possible Duplicate: What does *args and **kwargs mean? Understanding kwargs in Python I've found
Possible Duplicate: Python list append behavior Why does this code: x = [[]]*3 x[0].append('a')
Possible Duplicate: Does the compiler continue evaluating an expression where all must be true
Possible Duplicate: reverse a string in Python I tried searching the python documentation for
Possible Duplicate: Why does defining getitem on a class make it iterable in python?
Possible Duplicate: Python float - str - float weirdness Python float division does not

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.