@Alibi
Really both Python and Java are good first languages.
Java was my first language and then I began to expand into Python.
If you want Python expect this:
if __name__ == '__main__':
print("Hello world")
and if you go with Java expect this:
public static void main(String[] args) {
System.out.println("Hello world");
}
All trolls aside, either or are good languages to pickup on. There's probably more syntax involved with Java but python you need to be aware of indentation.
Both have their pros and cons.
Pick one