Python Forum
comparing zero leading number with a number
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
comparing zero leading number with a number
#4
Your are not allowed to put leading zeros in front of a number in Python, This is clearly stated by the error message.

Quote:leading zeros in decimal integer literals are not permitted

Python does not care much about what you or I think should be allowed. You have to follow the Python rules if you want to play.

You do not need to "strip" the zeros. Python only complains about leading zeros in "integer literals". Integer literals are number strings that are part of code. Python has no problem with leading zeros in strings:
print(int("01") == 1)
Output:
True
Or in user input.

test.py
print(int(input("Enter 01: ")) == 1)
Output:
(venv) >python test.py Enter 01: 01 True
tester_V likes this post
Reply


Messages In This Thread
RE: comparing zero leading number with a number - by deanhystad - Mar-22-2023, 10:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Music Python Script Repeating Number When Saving Facebook Photos ThuanyPK 2 187 May-13-2024, 10:59 PM
Last Post: ebn852_pan
  intering int number akbarza 1 297 Apr-28-2024, 08:55 AM
Last Post: Gribouillis
Brick Number stored as text with openpyxl CAD79 2 629 Apr-17-2024, 10:17 AM
Last Post: CAD79
  [SOLVED] Pad strings to always get three-digit number? Winfried 2 445 Jan-27-2024, 05:23 PM
Last Post: Winfried
  Prime number detector Mark17 5 918 Nov-27-2023, 12:53 PM
Last Post: deanhystad
  Create X Number of Variables and Assign Data RockBlok 8 1,106 Nov-14-2023, 08:46 AM
Last Post: perfringo
  find the sum of a series of values that equal a number ancorte 1 558 Oct-30-2023, 05:41 AM
Last Post: Gribouillis
  capturing multiline output for number of parameters jss 3 888 Sep-01-2023, 05:42 PM
Last Post: jss
  Sequential number for rows retrieved and storing the Primary UKey to the line number GYKR 2 646 Aug-22-2023, 10:14 AM
Last Post: GYKR
  doubling a number Skaperen 8 1,337 Jul-25-2023, 10:20 PM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020