Quote:
Originally Posted by
sriramp97
Hi, I have just learned how to progam in Visual Basic (Yeah, I know...), and I was wondering how I could learn Python or basic..... Any help Appreciated!
+ rep for a good answer
Thanks!!!
Merci!!!
There is a cool website called "CodeAcademy" which had a sweet JavaScript instructional module. I believe they added python as well so that may be worth taking a look at.
Though here is python in a nutshell:
def methodName(parameter):
someNum = parameter
for i in range someNum:
print("I am printing this method ", someNum, " times")
methodName(5)
I didn't test it but it probably should run.
Edit: Crud, webforms don't like indentation. Python is all about whitespace unfortunately.
Edit2: There's nothing wrong with learning more languages. Programming (ironically) isn't about the language and once you have learned one or two languages, the next becomes much easier to pick up. Odds are, if you ever get a programming job, you will be programming in a new language there too. Also, if you ever need a personal script to solve some sort of cute little problem, Python is a marvel.