Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
I really like Python. It's a great language for beginners to start on. It's pretty powerful for more advance stuff. Django is a nice framework. Flask is a nice minimalistic framework.
Package management is kinda insane, but you get into the same issues with Ruby and Perl. If you install packages, I highly suggest `pip install --user <packagename>` which will keep packages in your home directory and separate them from system packages (same with `gem install --user <package>` for Ruby).
The PEP8/pythonstyle standard is pretty nice and I wish more languages had it. Syntax is clean too.
The bad: you don't have type and types are really helpful. When you really get into writing Python, be sure to write tests! pytest and rspec are you friends in languages without strong typing! -
@djsumdog what do you mean by type? is it data types ? you can strictly make it specific. something like :
age:int -
Love the language. Really easy to get from concept to implementation with mininal fuss. It really gets out of your way due to the language naturally tending to be readable. We have some great resources regarding style guides like pep8(as mentioned before) and great battle tested web frameworks like django and flask(as mentioned before as well!)
It is also outstanding for machine learning. I used it through school for every math class I had to take(calculus, all algebra classes etc) and it was a complete badass tool that gave me powers. You can get some static typing with it. Which only makes python that much of a no brainer and has always been a favorite.
Only complaint: whitespace as block delimiter. But one gets used to that. -
IMO
pros:
- easily accessible os api, like in perl
- no need to compile
- lots of libs
- js-and-groovy-like syntactic sugar
- automatic memory mgmt
cons:
- not explicitly typed
- fucking identation for code blocks
- distorted oop principles
- mandatory self param in methods
- harder to debug than java
- lack of verbosity
- absence of classic syntactic elements
- no switch-case [i know, dicts. Still far from switch!]
I see more cons and it's quite repelling for me. Although its pros are worth attention... -
Shardj9336y@djsumdog your disadvantage makes no sense, python not only has types (or whatever you were trying to say) but is a hard typed language
-
beside all these qualified comments i'd like to add that learning it is exactly like http://devhumor.com/media/... but i guess this counts for any language.
some existential crises later i still hope for it to be universal usable for scripting as well as application developement. since i am terrible at maths i can't say anything about ml and these advanced stuff.
oh, and no need for compiling suits my normal coding style of run-error-ohatypo-run-error-nexttypo-run-slightchange-run-error... -
@Shardj wtf is a "hard typed" language supposed to be?
Not a Python pro, but I'm pretty sure those are just type hints and not something that is assigned statically -
Although this feature doesn't make Python strong typed, type hints have been added in the latest versions (as mentioned above already) for code clarity :) A nice touch imho
-
Shardj9336y@TheItalianGuy that is the definition of a strongly typed language, so yes that does make it strongly typed
Related Rants
So, what are your thoughts on Python?
question
opinion
thoughts
python