+ 3
C++ vs python 3 which one is the best?
i think C++ is best for coding.
9 Answers
+ 1
Python is for beginners..lol
+ 1
c++ and python are Not equal and they are used for a lot of things.
0
To do what ? For datascience python is better...
0
python is used by maker and for machine learning, Rasperry pi.
Yes That's used by some beginners
0
oups ^^ I have answer my family, "beginner" is Not I was think x)
Yes, python is Not for beginner.
0
Also an example here of how chosing the wrong algorithm increases time x10. For very complex applications, languages with modules optimized for your need or letting your more time to think about the algorithm can be the right choice
https://code.sololearn.com/cn4f5No80UvM/?ref=app
0
I don't know python (I Want to learn it coming soon) I Just say what my Friends says and what I read
(sorry for my bad english, I have 12years old and im french)
- 1
If award winning mathematics / computer science PhDs or experienced machine learning / datascience experts working for google, GE or facebook are beginners for you, you might be right on python :-).
- 1
Example of python use : https://en.m.wikipedia.org/wiki/TensorFlow
The point is that C++ xill be faster for not so complex applications and more adapted when you need to play with the machine's lower layers. Languages like Python are simpler to use, so it might be a good choice for both beginners and people who focus on the complexity of the problem/algorithm rather than language level complexity. For very complex application difference between a good and an average algorithm can be a 100 or 1000x factor (python will typically be 10 to 100 times slower), and a simpler code makes devt or debugging easier. Also a typical devt will have calculation intensive parts in C and python for the rest.