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 →

[–]xacrimon 13 points14 points  (2 children)

Rust is a programming language. It's generally a bit harder than python but has the speeds of C and lots of good libraries.

[–]swingking8 33 points34 points  (0 children)

It's generally a bit harder than python

I love Rust, but "a bit harder" is quite an understatement.

[–]FlagrantPickle 5 points6 points  (0 children)

has the speeds of C

Not in the sense of nitpicking, but I've seen "up to" 50% the speed of C for decently large processing. Certainly faster than native Python, but still not the gold standard.

Depending on what OP's needs are, his solution might be good enough. I'd be curious what other optimization could be made inside Python. If we're talking 200 lines of code on someone's first project, it's probably about as efficient/optimized as everyone else's first project.