Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Is Python slowly losing its charm?

Is Python slowly losing its charm?

Scheduled Pinned Locked Moved The Lounge
pythoncomquestion
48 Posts 33 Posters 2 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T tronderen

    CPallini wrote:

    Scripting languages have their usage.

    Let us limit them to that. The thing is that lots of people live with the misconception that Python is suitable for general problem solving, of arbitrarily complex problems. Scripting languages are meant for scripts, for managing a process (such as the building of a software system). It startet with Job Control Languages, developed into Unix sh and all its derivatives, or .bat files developed into PowerShell. You may see scripting languages such as Python as a further developments of shell concepts. You would never try to solve a complex problem as neither a bash nor PowerShell script. Even with further development of those concepts into Python (and its functional relatives), scripting languages are not suitable for complex problem solving.

    C Offline
    C Offline
    CPallini
    wrote on last edited by
    #16

    Quote:

    scripting languages are not suitable for complex problem solving.

    It depends... I wrote a fairly complex application (at least from my point of view) using Lua.

    "In testa che avete, Signor di Ceprano?" -- Rigoletto

    T P 2 Replies Last reply
    0
    • S Slacker007

      I don't think Python is losing its charm as much as people are realizing that programming is not for them. This goes back to a post I made a few days ago, where I said that the world is throwing technology at everyone, hoping many become programmers, engineers, etc. Python was supposed to be the language for the masses. Only problem is, the masses don't like programming.

      D Offline
      D Offline
      Dan Neely
      wrote on last edited by
      #17

      Slacker007 wrote:

      This goes back to a post I made a few days ago, where I said that the world is throwing technology at everyone, hoping many become programmers, engineers, etc. Python was supposed to be the language for the masses. Only problem is, the masses don't like programming.

      So were Basic, SQL, and COBOL at times in the past. Same as it ever was. Same as it ever was.

      Did you ever see history portrayed as an old man with a wise brow and pulseless heart, weighing all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

      C 1 Reply Last reply
      0
      • S swampwiz

        https://towardsdatascience.com/python-is-slowly-losing-its-charm-9ca652726492[^] my opinion: To me, it's always seemed like a toy language like BASIC.

        R Offline
        R Offline
        raddevus
        wrote on last edited by
        #18

        Why I Start Python then always Stop I like a lot of programming languages. C# is my favorite, but I like C++, Pascal, C, Java, Kotlin (more & more all the time), even Swift (very Kotlin-like), TypeScript and I also like JavaScript -- even though it has a lot of annoying things like === etc. I try to like Python, I really do. But there are a number of reasons that every time I start using it again I stop. 3) whitespace dependent. I've hurt myself with this where code fails due to having a tab where I should have 3 spaces or vice-versa. It's annoying. Just use some friggin' brackets. 2) global variables in file. If you define a variable in a file it is global to every function in that file. What!?! Yep. It's painful and confusing and a bad idea. 1) But the number one, knock-down, all-time biggest reason I just can't get past it is the use of double-underscores. X| Yes, I'm a syntax snob. :-\ It's just the ugliest syntax ever and I don't want to type underscores all the time! It's so ugly to look at Python code. Here's a sample from official documentation:

        class Mapping:
        def __init__(self, iterable):
        self.items_list = []
        self.__update(iterable)

        def update(self, iterable):
            for item in iterable:
                self.items\_list.append(item)
        
        \_\_update = update   # private copy of original update() method
        

        It's so ugly, so I just stop Python as soon as possible and go back to one of the good languages. I was also wondering why Van Rossum (creator of Python) used underscores so much and there are some good explanations in this post. But there is no excuse, because other modern languages have not had to use characters like that. Why does python use two underscores for certain things? - Stack Overflow[^]

        P 1 Reply Last reply
        0
        • S swampwiz

          https://towardsdatascience.com/python-is-slowly-losing-its-charm-9ca652726492[^] my opinion: To me, it's always seemed like a toy language like BASIC.

          R Offline
          R Offline
          Rage
          wrote on last edited by
          #19

          I think it issss sssstill a charming language.

          Do not escape reality : improve reality !

          1 Reply Last reply
          0
          • C CPallini

            Quote:

            scripting languages are not suitable for complex problem solving.

            It depends... I wrote a fairly complex application (at least from my point of view) using Lua.

            "In testa che avete, Signor di Ceprano?" -- Rigoletto

            T Offline
            T Offline
            tronderen
            wrote on last edited by
            #20

            Yeah, there are project groups in our organization that make similar claims. Still, I beg to disagree. Although it may be "possible" to use a given tool, doesn't mean it is suitable. Disclaimer: I know nothing about Lua. From skimming trhough the Wikipedia description, I am sort of curious to hear the reasons for choosing Lua for complex problem solutions over other alternatives.

            C 1 Reply Last reply
            0
            • C CPallini

              Quote:

              scripting languages are not suitable for complex problem solving.

              It depends... I wrote a fairly complex application (at least from my point of view) using Lua.

              "In testa che avete, Signor di Ceprano?" -- Rigoletto

              P Offline
              P Offline
              PIEBALDconsult
              wrote on last edited by
              #21

              Reminds me a fairly significant program I wrote in DCL (Digital Command Language) once -- it was an accomplishment, not to be repeated.

              C 1 Reply Last reply
              0
              • P PIEBALDconsult

                Reminds me a fairly significant program I wrote in DCL (Digital Command Language) once -- it was an accomplishment, not to be repeated.

                C Offline
                C Offline
                CPallini
                wrote on last edited by
                #22

                You are possibly right.

                "In testa che avete, Signor di Ceprano?" -- Rigoletto

                1 Reply Last reply
                0
                • T tronderen

                  Yeah, there are project groups in our organization that make similar claims. Still, I beg to disagree. Although it may be "possible" to use a given tool, doesn't mean it is suitable. Disclaimer: I know nothing about Lua. From skimming trhough the Wikipedia description, I am sort of curious to hear the reasons for choosing Lua for complex problem solutions over other alternatives.

                  C Offline
                  C Offline
                  CPallini
                  wrote on last edited by
                  #23

                  Lua is easily embedded in a C/C++ application, and that works also in the opposite direction, it is easily extensible using C/C++ libraries. So, my first plan was to embed Lua in a C++ application (and write numerous C libraries for low level tasks). Eventually, I found no real need for the C++ code.

                  "In testa che avete, Signor di Ceprano?" -- Rigoletto

                  1 Reply Last reply
                  0
                  • S swampwiz

                    https://towardsdatascience.com/python-is-slowly-losing-its-charm-9ca652726492[^] my opinion: To me, it's always seemed like a toy language like BASIC.

                    R Offline
                    R Offline
                    RedDk
                    wrote on last edited by
                    #24

                    Pythons have no shoulders ... so we know the loss of charm is not due to it's tee shirt needing a change, right? (sorry, walked by a corner selling designer-pattern-printed neck/chin tubes yesterday and couldn't resist)

                    1 Reply Last reply
                    0
                    • S Slacker007

                      CPallini wrote:

                      Python is not a toy language

                      Agreed, its not, and it is very powerful and versatile language, etc. I personally have no need for it in my personal software projects or work projects. I hear it is a great language for data analysis, etc.

                      N Offline
                      N Offline
                      Nelek
                      wrote on last edited by
                      #25

                      Slacker007 wrote:

                      I hear it is a great language for data analysis, etc.

                      I know a couple of people using it for big data and similars and they just say it is the best, I have never used it though so I can only say what I was told.

                      M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.

                      1 Reply Last reply
                      0
                      • S swampwiz

                        https://towardsdatascience.com/python-is-slowly-losing-its-charm-9ca652726492[^] my opinion: To me, it's always seemed like a toy language like BASIC.

                        K Offline
                        K Offline
                        Kolya Ivankov
                        wrote on last edited by
                        #26

                        I see many people out there having little idea about python and saying that they know it's good for data science. Here's my 5 cent as a data scientist. Python has some well-developed libraries for data science. Those libraries, like pytorch, are written in C++, and are indeed easy to use via pyton. That being said, I started developing in pyton for a single reason that my younger colleagues didn't know other languages, and I needed to both have common ground with them and also to show that I am at least just as capable as they are on this ground. Those colleagues were at odds with understanding strongly typed language syntax, btw. This, in my opinion, creates a vicious cycle. With more and more - and, hence, less and less qualified - human resources being pumped in the hot field of AI, those need to be trained fast on the most entry-level language possible, allowing for neural networks and stuff. For now it's python here. As more and more people in AI are now python exclusive, qualified developers focus more at delivering AI libraries for python. Remember, those people often have trouble understanding the difference between a class and an object, so strong typization is a burden for them. Whereas I, used to work with demanding projects and trained in pure math, ended up strongly typing in python (which it allows for), otherwise loosing track. On top of that, Microsoft screwed up with its C#-compatible CNTK library, dispersed its effort to include python support again, lost miserably to other libraries, and that's the last I've heard of it. In Java, there is a pretty neat and viable alternative library Deeplearning4j that does all - well, most - things python libraries do, has neat syntax, uses Java 8, and is overall pretty satisfying. I prefer workig in it even though in general I despise Java for multiple reasons. I actually believe Deeplearning4j is one of the few reasons to like Java for.

                        1 Reply Last reply
                        0
                        • S swampwiz

                          https://towardsdatascience.com/python-is-slowly-losing-its-charm-9ca652726492[^] my opinion: To me, it's always seemed like a toy language like BASIC.

                          M Offline
                          M Offline
                          Martin ISDN
                          wrote on last edited by
                          #27

                          when compared to Julia any language does have its share of disadvantages

                          1 Reply Last reply
                          0
                          • D Dan Neely

                            Slacker007 wrote:

                            This goes back to a post I made a few days ago, where I said that the world is throwing technology at everyone, hoping many become programmers, engineers, etc. Python was supposed to be the language for the masses. Only problem is, the masses don't like programming.

                            So were Basic, SQL, and COBOL at times in the past. Same as it ever was. Same as it ever was.

                            Did you ever see history portrayed as an old man with a wise brow and pulseless heart, weighing all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

                            C Offline
                            C Offline
                            Carl_Sharman
                            wrote on last edited by
                            #28

                            And you may ask yourself: "Well, how did I get here?"

                            G 1 Reply Last reply
                            0
                            • S swampwiz

                              So you are saying that Python is the new BASIC.

                              P Offline
                              P Offline
                              Peter Adam
                              wrote on last edited by
                              #29

                              No, it is worse. It's syntax is C infested.

                              K 1 Reply Last reply
                              0
                              • C CPallini

                                In my opinion Python is not a toy language (and even BASIC wasn't). That said, Python is far better than BASIC (and Lua is even better than Pyhton). Scripting languages have their usage.

                                "In testa che avete, Signor di Ceprano?" -- Rigoletto

                                P Offline
                                P Offline
                                Peter Adam
                                wrote on last edited by
                                #30

                                For a starter, Python is advocaded for sci and eco. But it has no fixed point datatype. So sci and eco learned what takes eons for prog, still delivering bugs months after using the delivered software. 0.5 + 0.5 = x is a hard to solve equation.

                                1 Reply Last reply
                                0
                                • C Carl_Sharman

                                  And you may ask yourself: "Well, how did I get here?"

                                  G Offline
                                  G Offline
                                  glennPattonWork3
                                  wrote on last edited by
                                  #31

                                  I'm not the only one to think 'Talking Heads' then...

                                  C 1 Reply Last reply
                                  0
                                  • S swampwiz

                                    https://towardsdatascience.com/python-is-slowly-losing-its-charm-9ca652726492[^] my opinion: To me, it's always seemed like a toy language like BASIC.

                                    S Offline
                                    S Offline
                                    Shawn_Eary
                                    wrote on last edited by
                                    #32

                                    I prefer Haskell, but I haven't been able to use it much lately.

                                    1 Reply Last reply
                                    0
                                    • R raddevus

                                      Why I Start Python then always Stop I like a lot of programming languages. C# is my favorite, but I like C++, Pascal, C, Java, Kotlin (more & more all the time), even Swift (very Kotlin-like), TypeScript and I also like JavaScript -- even though it has a lot of annoying things like === etc. I try to like Python, I really do. But there are a number of reasons that every time I start using it again I stop. 3) whitespace dependent. I've hurt myself with this where code fails due to having a tab where I should have 3 spaces or vice-versa. It's annoying. Just use some friggin' brackets. 2) global variables in file. If you define a variable in a file it is global to every function in that file. What!?! Yep. It's painful and confusing and a bad idea. 1) But the number one, knock-down, all-time biggest reason I just can't get past it is the use of double-underscores. X| Yes, I'm a syntax snob. :-\ It's just the ugliest syntax ever and I don't want to type underscores all the time! It's so ugly to look at Python code. Here's a sample from official documentation:

                                      class Mapping:
                                      def __init__(self, iterable):
                                      self.items_list = []
                                      self.__update(iterable)

                                      def update(self, iterable):
                                          for item in iterable:
                                              self.items\_list.append(item)
                                      
                                      \_\_update = update   # private copy of original update() method
                                      

                                      It's so ugly, so I just stop Python as soon as possible and go back to one of the good languages. I was also wondering why Van Rossum (creator of Python) used underscores so much and there are some good explanations in this post. But there is no excuse, because other modern languages have not had to use characters like that. Why does python use two underscores for certain things? - Stack Overflow[^]

                                      P Offline
                                      P Offline
                                      Peter R Fletcher
                                      wrote on last edited by
                                      #33

                                      On global variables in Python: it is misleading to say, without qualification: "If you define a variable in a file it is global to every function in that file." It is true that if you define and/or use a variable outside a function, it becomes globally visible to 'subsequent' code within the file. It is, however, treated as read-only outside its original scope unless it is specifically declared as global within a function definition. I can see that even the read-only visibility of such variables may be offensive to those to whom the thought of global variables is anathema, but I do not find it so.

                                      P 1 Reply Last reply
                                      0
                                      • G glennPattonWork3

                                        I'm not the only one to think 'Talking Heads' then...

                                        C Offline
                                        C Offline
                                        Carl_Sharman
                                        wrote on last edited by
                                        #34

                                        I'm glad I'm not alone in that :)

                                        1 Reply Last reply
                                        0
                                        • P Peter Adam

                                          No, it is worse. It's syntax is C infested.

                                          K Offline
                                          K Offline
                                          Kirk 10389821
                                          wrote on last edited by
                                          #35

                                          I resent that... I love the C syntax. I might be biased because I learned Macro-11 Assembly before C, and there is a one to one mapping on most C statements.

                                          P 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups