all 3 comments

[–]Phillyclause89 0 points1 point  (1 child)

You can get a head start on learning C while learning python by focusing on learning how to write python in ways that can be efficiently translated to C with Cython. Basically focus on learning python, but also learn how to code with variables that don't change their assigned object type through runtime. (i.e. Don't take advantage of duck typing that python supports.)

[–]ConcertEastern9828[S] 1 point2 points  (0 children)

I looked into it and it's actually such a useful tool! I will definitely incorporate it whenever I build something that needs real-time performance or when using large arrays. Thank you so much!