Hello guys. I just want to ask how to convert this code to python. I am just a beginner in this code.
String output = "The number is: ";
int num= 12;
output+=num;
System.out.println(output);
in my python code, i try to do this:
output = "The number is: ";
num = 12;
output+=num;
print output;
but i get an error. :( . I also tried this:
output = "The number is: ";
num = 12;
output= output, num;
print output;
but i also get an error.