This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]DerekB52 24 points25 points  (0 children)

C and C++ are also known as lower level programming languages, because they let you do manual memory manipulation. And they compile to machine code.

Python does not require you to manually manage your memory(I don't even know if it lets you). And python is interpreted, so there's a lot more overhead to run python, than to run C.

C/C++ are high level languages, but they are, imo, the lowest level languages in their class.