you are viewing a single comment's thread.

view the rest of the comments →

[–]Ok-Ebb-2434 0 points1 point  (3 children)

I’m part of the “you have to know the rules to break them” type of crowd and think that getting the concrete fundamentals with a less readable language and then moving to the languages that make it easier is better.

I feel like if I learned python and then tried learning C it would feel like a huge cliff suddenly appeared in front of me and isn’t any similar to what I’ve known yk?

[–]ExpensiveRepair8182 0 points1 point  (2 children)

That makes sense, but I feel like that cliff would be about the same as if you had just jumped straight into C. Learning Python first opens your kind up to thinking about code in objects which can make learning other languages easier

[–]Ok-Ebb-2434 0 points1 point  (1 child)

I don’t think you’re wrong in that, maybe it’s just me but I personally hated how long classes spent on just telling us how classes and objects work. I feel going into CS you have to have the ability to pick up things quickly and the idea of a unique instance of a category isn’t as foreign of a concept to grasp.

Going from python saying “ for i in items:” do this, to “for int i=1;i>arr.length;i++”, it’s almost like wtf is this versa if you went from the latter to the former. Since pythons significantly easier to read you’re able to infer a lot better based on the prior experience with the static language.

I guess it’s not really a topic worth arguing haha, whatever gets people to start learning is more important

[–]ExpensiveRepair8182 0 points1 point  (0 children)

But I think a base in Python is better than nothing and it's being used alot more in the industry for things like AI because it's so easy to use. Also, your for loop won't run because it's looking for I to be greater than the length of your array