Evolutionary
n00b
- Joined
- Apr 8, 2011
- Messages
- 40
I've been doing a lot of thinking lately, and it looks like I've settled on programming as my future career. I've always been into and up-to-date on the hardware side of things, but I've never really payed much attention to the software side of things. Lately, while encountering various tasks and issues, I've found myself thinking a lot "Man, I wish I could create a program to show me X at Y time or make A happen at B time" and the like and have finally decided I want to pursue a career in making these tasks possible. I've enrolled myself into the edX course on Introduction to Computer Science and Programming, which teaches the basics of programming through Python 2.* over the course of a few months and even offers a certificate from MITx upon completion. I've went ahead and started doing some studying tonight to prepare myself and found that I couldn't get enough of the stuff. I've written a very basic program that finds the area of a rectangle seen below:
While very basic, I feel an odd sense of accomplishment and can't wait to get to the real meat of the language. Though I feel a bit frustrated that I don't know enough to build anything quite useful, I know it'll come with time and I'll be frustrated over more advanced things.
Not sure why I felt like creating this, but I'll probably be lurking around this sub-forum a lot soaking up all that I can. See you guys later.
Code:
l = input ("Length: ")
w = input ("Width: ")
print "Area: " + `l*w`
raw_input ("Press<enter>")
While very basic, I feel an odd sense of accomplishment and can't wait to get to the real meat of the language. Though I feel a bit frustrated that I don't know enough to build anything quite useful, I know it'll come with time and I'll be frustrated over more advanced things.
Not sure why I felt like creating this, but I'll probably be lurking around this sub-forum a lot soaking up all that I can. See you guys later.