Programming Thread

Viewing single post

Started by the-pi-guy, Mar 13, 2016, 10:39 PM

previous topic - next topic

the-pi-guy

My tutors said we used python because it's clear and tidy
It is.  

P = "hello world"
Print(P)


Java:
String P= "hello world";
System.out.print(P);