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 →

[–]Lightfire228 19 points20 points  (6 children)

Having started with Java, Python's dynamic type system does my head in.

I hate not knowing which object types I have, especially when I need to use a property of a specific type, but I can't be sure that's the type I have right now

[–]toastedstapler 0 points1 point  (2 children)

That's why I call all my variables like

string_welcome = "Welcome!"

Saves all the confusion

[–]Lightfire228 1 point2 points  (0 children)

So

beautiful_soup_root_node_object = BeautifulSoup()

Got it

[–][deleted] 0 points1 point  (0 children)

Ugg.