- Joined
- Oct 21, 2019
- Messages
- 513
- Trophies
- 0
Title pretty much says it all.
The languages I've learned so far are Java (taught in my Computer Science class) and Python (self-taught). It's weird because Java and Python are the exact opposites (different typing (static vs dynamic), braces vs no braces, loop style, etc), but I honestly prefer Python to Java due to the clean nature of the code.
Take these few lines of code, for instance. Which one seems cleaner?
Can you see why I enjoy Python?
If you've learned a programming language (or a bunch of them), what programming language is your favorite out of all of them? (By the way, you don't have to pick just one language - you can talk about why you like multiple languages.)
Aside from programming languages which you've learned, are there any programming languages that you wish to learn? Why? (And if you don't know any programming languages, what is a language that you'd like to learn?
The languages I've learned so far are Java (taught in my Computer Science class) and Python (self-taught). It's weird because Java and Python are the exact opposites (different typing (static vs dynamic), braces vs no braces, loop style, etc), but I honestly prefer Python to Java due to the clean nature of the code.
Take these few lines of code, for instance. Which one seems cleaner?
Java:
public class Main
{
public static void Main(String[] args)
{
//This is just a test.
String var1 = "Test";
System.out.println("Test");
}
}
Python:
# will create a variable called var1 which is a string holding "Test"
var1 = "Test";
# prints it out
print var1;
Can you see why I enjoy Python?
If you've learned a programming language (or a bunch of them), what programming language is your favorite out of all of them? (By the way, you don't have to pick just one language - you can talk about why you like multiple languages.)
Aside from programming languages which you've learned, are there any programming languages that you wish to learn? Why? (And if you don't know any programming languages, what is a language that you'd like to learn?