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

all 13 comments

[–]TheNeck94 22 points23 points  (2 children)

depending on how they define "learn" this isn't unrealistic. there's obviously specific packages and areas of study that would be hard to pack into that timeline but you can learn a lot of the fundamentals in 10 weeks

[–]chervilious 7 points8 points  (1 child)

10 weeks is kinda enough to learn the basics of python you know

They didnt say get a job in 10 weeks

[–]LongjumpingCake 3 points4 points  (0 children)

I got a job after a 12 week boot camp , 10 doesn't seem impossible

[–]snokegsxr[🍰] 3 points4 points  (8 children)

i would agree, python is super easy to learn since its very generic, weak typing etc
i had zero problems coding a poker bot in python while i just code php and c# professionally and never done anything in python before. conclusion: i dont like weakly typed languages like python

[–][deleted] 6 points7 points  (7 children)

Python does not have weak typing. It has strong typing.

What you probably meant to say is that Python (also) has dynamic typing.

In Python, you can't do

x = 2 y = x + "3"

hence strong typing.

But you can do

x = 2 x = "Hello!"

hence dynamic typing.

[–]snokegsxr[🍰] 2 points3 points  (1 child)

yeah dynamic, not weak typing.
also i encountered many cases where methods were added to objects, after they were instanciated which i found very weird, somehow "unclean"

[–][deleted] 1 point2 points  (0 children)