For begginers, is Java better than Python?

1 Answer

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 projects going on depending on what you want to do (e.g., the Pylons web app framework). I have friends who rave about Ruby, but I don't know it well enough to offer an opinion on it.

Related questions

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 : GAE contains the several runtime environments including : JAVA, Python, _______ & a) C# & MySQL b) Net & Ruby c) PHP & GO d) Closure & Scala

Last Answer : PHP & GO

Description : why to choose Python over Java in Selenium?

Last Answer : Few points that favor Python over Java to use with Selenium is, Java programs tend to run slower compared to Python programs Java uses traditional braces to start and ends blocks, while Python ... static typing, while Python is dynamically typed. Python is simpler and more compact compared to Java.

Description : What should I do so that I can learn Java in a fast and efficient manner?

Last Answer : Perhaps you could audit a course. Auditing isn’t as expensive, but you’ll still get the instruction.

Description : Just allowed Java to load on my machine. Is that a mistake?

Last Answer : No, you’re fine. Java is an essential component of many websites, and it’s as safe as houses.

Description : Can anyone coach me through how to use java on my Mac?

Last Answer : answer:You might want to start with Eclipse. This might help too. I haven't played with Java before but you might also need Xcode. It is free. I'm not sure if Eclipse has its own compiler or ... essentially what your instructor has done to you. This isn't high school. You are now a paying customer.

Description : What is hashcode in JAVA..?

Last Answer : answer:

Description : Why would I need Java on my PC?

Last Answer : Some websites and programs use it to run so if you get rid if it you may find somethings don’t work however I haven’t had java on my PC for years and never have any problems.

Description : How to use a Character in a Switch Statement (Java)

Last Answer : answer:Not a java guy so this is just a guess, but it looks like you need to put some quotes around your characters to identify them as strings. Right now I'd guess they're being treated as ... not being found. So instead of case a: use case a : Also remember case sensitivity with characters

Description : How do I run a .jar (java) application on my mac?

Last Answer : I had this problem before, it has something to do with the way JavaSun scripted Java for mac. I would say do a Spotlight for Java and see what comes up, if you don't get an App called Java ... more ideas, but the wrists are starting to hurt and I think I need to call it a night with typing.

Description : Necessary to upgrade JAVA?

Last Answer : It's definitely unnecessary... this last upgrade, if I recall, fixed the daylight savings time (that the US just changed). Regardless, you are probably never using java... and I'm sure the version you have will ... .) But Java truly won't make any difference to you. Don't update if it's a big pain.

Description : Using Java Date class...

Last Answer : answer:Date is deprecated because it isn't locale aware. It was replaced with the Calendar family of classes. In order to create & populate an object representing a date in Java you can do something like ... (Calendar.YEAR, 2008); c.set(Calendar.MONTH, Calendar.FEBRUARY); c.set(Calendar.DATE. 19);

Description : What book(s) should I get for learning Java?

Last Answer : Can you clarify one thing before I answer. Are you looking to learn Java or Javascript? There’s a HUGE difference between them, so that’s why I’m asking.

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 : 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 : Creating a countdown script in Python...

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

Description : Do you recommend Python as a first language?

Last 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 ... apps in less time. If you want to code for real then learn the big thing, c, c++, c# etc.

Description : Which is better: C# or Java?

Last Answer : The two languages have an awful lot in common, and so in some ways it's natural to try to choose a winner. The fact that each language is often viewed as the flagship of its camp-C# in Microsoft's . ... like the radio. You can do it, but you'll be happier if you choose based on the whole package.

Description : If you are deploying into a Java EE 5 (or better) container, you may simply create a bean that is annotated with:- a) javax.jws.WebService b) javax.jws.WebServiceProvider c) all of the mentioned d) none of the mentioned

Last Answer : all of the mentioned