|
|
|
|
|
by volaski
4944 days ago
|
|
1. If you think Python is a pain, I don't think there is any other language you can learn. I've learned lots of different languages, but Python was one of the easiest to pick up and get started--not so different from BASIC.
2. Unless things have changed since I last worked with python, your statement "Everything is an object" is not true. Actually this is one thing I like about Python over Ruby (In Ruby, everything actually is an object.) As far as I know, Python has primitives, and therefore not as confusing as ruby for beginners.
3. Here's a problem: "Build a program that fetches content from a web page.". Try building that without using any modules. Maybe even try that with your BASIC if you want. By using modules you just reuse what people have already built, and can solve aforementioned problem with just a couple of lines. |
|