+ 1
I am a Spanish translator , is it good for me to learn Java ?
2 Réponses
+ 6
yes, why not? its a good skill to have
0
If your question mentioned about coding skill, my answer is yes.
I strongly agree with others.
If you asked about language selection, it depends on your goal: just interested in, need automation of daily task, want to do linguistic analyses, etc...
Generally, I recommend Python for those who are beginner in programming but expert in another field.
Python is a popular and sophostocated language which is easy to learn, fast to code, but also has great potential.
Don't get me wrong, Java is also good for learning.
However, Java typically needs longer code.
Although it helps robust developping, it should affect efficiency of primary learning.
Look at Hello World programs written in either language:
Java:
public Class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
Python:
print('Hello World!')
Which would you like to study with?