While Python is the most hot topic these days, either in web development (not that much), data science, or AI/ML,. Python provides rich libraries f...
For further actions, you may consider blocking this person and/or reporting abuse
I would say the lack of datatypes, low level things ect makes Python BETTER for beginners
Those new to programming need to get started as soon as possible, more roadblocks and points of frustrations will turn people away from programming
The only point against Python is the fact it is not easy to create a visual result easily beside prints
I agree!
I agree with @wagenrace
but then we might not understand how actually things work internally.
Is that the point of a FIRST language?
A first language should be welcoming to newcomers, help them get started, and remove as many roadblocks as possible.
Once people are comfortable with the basics you can introduce new or deeper subjects
I started my journey in school with C++, which isn't the easiest language to start with, let's be honest. But this + few months with C on the studies had probably the biggest impact on my developers skills. The way you need to deal with pointers, memory allocation etc. changes the way you're looking at a program and programming itself. Today I don't use low level languages, but the ideas and knowledge related to them are still useful.
great
I think this advice might be better as a list of things for people to learn about if they started with Python and are looking to either learn more advanced topics or transition to using one of these languages - growing from Beginner to Intermediate level developer type framing.
My philosophy for getting someone started with development is to start with the path of least resistance - it makes for a more encouraging start instead of running into frustrations about things that really don't matter if you're just getting started with programming.
thanks for mentioning another way of approach.Haha.As a developer also you need to understand a few concepts—some I experienced.
I absolutely agree, the first language I learned was python and that's why I had adaptation problems when switching to another language, fortunately I overcame this problem when I was still a junior by reading and trying to understand programs written in other languages and other developers' code, I remember it was a bit difficult, I also remember that my friend who wrote php could read my python code while I could not read his php code, so I definitely do not recommend python to someone new
yeah I felt same when I started learning Java .
Yeah, I agree. But we can easily switch from one language to another if we learn the first one properly. In India, colleges still teach C to First-year students. So, if we give a bit of attention to it, we can get away with advanced concepts and learn Python too. My suggestion was for college students as they have plenty time of for 4 years.
Python was created to replace the more ancient language, The Perl language.
Perl was created to make unix shell code more powerful and organizable.
A lot packages which was formerly written in Perl are now written in Python in Unix/Linux system.
Python is now the infrastructure of Linux shell.
The indentation sensitive feature derived from languages like BASIC and Fortran is not good for sharing and reading.
I don't encourage use Python for new projects, I would like use node.js instead. :)
As for beginners, JavaScript is a more available choice.
Most people are using Nodejs these days.
When I started, I dabbled with c++, and I couldn't understand pointers and the reason for that is probably due to the fact that I didn't need them at that point. If you are a beginner programmer and you begin to notice the downsides of using python as a programming language, it means you've leveled up and it's time to move over to a more complex language.
Those advanced features in other programming languages gives the programmer more control, and they are appreciated by advanced programmers because they understand the need for them. But for a beginner, those things do not matter to them.
Python was created to be easy to read and write. And as a beginner, you don't need things in a programming language that are going to make you hate programming.
Start with python, and when there is a need to use something more complex, you change.
Agree. I just shared my experience.Surely I love Python the most
Why python SHOULD be your first language 🐍
dev.to/wagenrace/why-should-python...
@kwnaidoo I Strongly agree with your thought on this one.
reach++
I totally get what you're saying about Python being popular, especially with its cool libraries for web dev, data science, and AI/ML. But, you've rightly pointed out some quirks, like Python's flexible variable types, which can trip up beginners. Exploring languages like Java or C++ and checking out their setup in a software development team structure might be a good call for a more rounded coding journey.
thanks
I watched an interview with Dr. Chuck and he actually said:
youtu.be/6uqgiFhW0Fs
yeah . C is the base of all.
For the 1st problem you addressed, there are some modern libraries to parse types and constraints for functions and classes at runtime such as utype and pydantic
thanks for your information. will see
Very nice
thanks
Although I'm not the biggest fan of Python (though I've certainly written my fair share over the last 30+ years) it's certainly a great scripting language for AutoKey in Linux! My point being (and as you have made clear) that it has its useful place. Only thing I hate is the use of indention for blocks...
Appreciate the article.
thanks for your appreciation,