Python Forum
Inconsistency in Python programming language?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Inconsistency in Python programming language?
#1
Hi!

Well, this is a question that arose in some other threads that I was participating in, and I wanted to give it a bit more of a thought, and to ask for some insights from others.

The process of converting one data-type into another data-type is called casting, so in theory, with the str(), float(), and int() functions, we can transform a numeric value string into a float or into an integer, and in a similar way, a float into a string or an integer, or an integer into a string or a float.

So now, I'm going to show the inputs and outputs of some of these transformations:
Output:
>>> str(4) '4' >>> str('4') '4' >>> str(4.5) '4.5' >>> str('4.5') '4.5' >>> float(4) 4.0 >>> float('4') 4.0 >>> float(4.5) 4.5 >>> float('4.5') 4.5 >>> int(4) 4 >>> int('4') 4 >>> int(4.5) 4 >>> int('4.5')
Error:
Traceback (most recent call last): File "<pyshell#16>", line 1, in <module> int('4.5') ValueError: invalid literal for int() with base 10: '4.5'
where we can see that:

1) a numeric value, naked or wrapped in quotes, in the format of a whole number or in the format of a float, can be transformed into a string with no problems.

2) a numeric value, naked or wrapped in quotes, in the format of a whole number or in the format of a float, can be transformed into a float with no problems.

3) a numeric value, naked or wrapped in quotes, in the format of a whole number or in the format of a float, can be transformed into an integer with no problems, EXCEPT WHEN IT'S A FLOAT WRAPPED IN QUOTES, THAT PRODUCES AN ERROR.


It seems that this is a contradiction on the casting of data types, or an inconsistency in Python programming language itself.

Do you have an explanation for that behaviour?
All insights are welcome!!!

All the best,
newbieAuggie2019

"That's been one of my mantras - focus and simplicity. Simple can be harder than complex: You have to work hard to get your thinking clean to make it simple. But it's worth it in the end because once you get there, you can move mountains."
Steve Jobs
Reply


Messages In This Thread
Inconsistency in Python programming language? - by newbieAuggie2019 - Oct-04-2019, 05:44 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Programming robots using Python OscarBoots 5 3,487 Oct-31-2021, 09:38 AM
Last Post: Larz60+
  logo language code into python aayushi98 2 69,627 Jan-26-2021, 09:02 PM
Last Post: Serafim
  Programming Difficult math in Python Huntern 6 4,819 Oct-17-2019, 06:32 AM
Last Post: Huntern
  Terms describing Python Programming language leodavinci1990 3 2,749 Aug-12-2019, 02:48 PM
Last Post: leodavinci1990
  Please help a newbie choose which programming language to learn. yeto 2 3,540 Feb-25-2019, 12:56 AM
Last Post: yeto
  Python Programming Projects for Beginners jack_sparrow007 3 3,345 Dec-26-2018, 07:52 PM
Last Post: micseydel
  How to get image from WolframAlpha by using Python language manhnt 1 2,714 Oct-27-2018, 02:07 PM
Last Post: Larz60+
  Programming Python as a MS Windows app? Brian123 8 4,285 Oct-17-2018, 10:26 PM
Last Post: Brian123
  Help with Python programming mediaos 5 3,788 Aug-08-2018, 01:02 PM
Last Post: Larz60+
  How to make the python default language be 3.6 instead of 2.7 sylas 4 6,857 Jul-06-2018, 06:11 AM
Last Post: sylas

Forum Jump:

User Panel Messages

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