Do you recommend Python as a first language?

1 Answer

Answer :

answer:If you want to code on Linux yes it’s good. but on Windows you’ll need to run the whole thing and it’s a mess to run app etc. As a first language I would tell you learn some web language like PHP it’ll introduce you to coding and you will be able to code web apps in less time. If you want to code for real then learn the big thing, c, c++, c# etc.

Related questions

Description : I have the basics of Python nailed. Can anyone recommend a good Python/Django book?

Last Answer : Dive Into Python (http://diveintopython.prg) is an excellent Python book for programmers. How to Think Like a Computer Scientist is another excellent book to learn Python, for non-programmers. Bruce ... s AppEngine cloud, which makes it very easy to bring value to people while playing with Django

Description : Are there any resources that you can recommend for me to learn LAMP (Linux Apache MySQL Perl/Python/PHP?

Last Answer : I’m not educated in this type of stuff, but I did a little research and got these. http://lamphowto.com http://onlamp.com

Description : How can I learn Python language for free?

Last Answer : This question came up here a few months ago. See the Python comments here.

Description : Do you think SICP should be converted over to a language like python or ruby?

Last Answer : answer:Some, maybe. People out there have already redone the exercises in other languages here: http://codepoetics.com/wiki/index.php?title[equal]Topics:SICP_in_other_languages I think scheme is ... less elegant though, and confuse you between the concept and its implementation in a language.

Description : Python programming language?

Last Answer : What is Python and what is it for? Python is a high-level language. Those in which the codes have a syntax similar to human language, as well as Ruby, which has a dynamic typing. So ... and is object oriented. It was created in 1992 by the Dutch mathematician and programmer Guido Van Rossum.

Description : Does knowing java make learning C/C++/Python easier? Which should I learn first?

Last Answer : answer:Learn Python first if you have no programming experience. The syntax is more human-friendly while still offering the features and speed of compiled languages (like Java and C). With ... speed up the learning process significantly. In what field will you be using your programming knowledge?

Description : Can someone help me with this Python problem?

Last Answer : answer:Python is unique among mainstream modern programming languages because it doesn't have integer overflow. Here's what I mean by that. In most other programming languages, there is a distinct maximum ... . The integer is eating up all the available memory and the program is unable to continue.

Description : How to make columns into lists for .csv (excel) with Python?

Last Answer : answer:data = open( grades.csv , r ).readlines() for line in data: [t]items = line.split() [t]print items[0], items[2] note that Fluther strips the required tabbing from the program, replace [ ... to delimit columns. Should really close the file in the program and not leave the OS to sort it out.

Description : For begginers, is Java better than Python?

Last Answer : answer:I don't have any experience with Java, but I can say that Python is the cat's meow. Python is clean and easy to understand, has a zillion libraries you can take advantage of, and has some cool ... have friends who rave about Ruby, but I don't know it well enough to offer an opinion on it.

Description : Creating a countdown script in Python...

Last Answer : import time time.sleep(10) # sleep for ten seconds