0
This code <<print like echo in cmd are you agree withme
2 Answers
+ 2
In python 2, you can use the following:
print "hello world"
print("hello world")
In Python 3, you must use parenthesis around what you want to print:
print ("hello world")
you can also pass a variable to print:
a = 1
b = 2
c = a + b
print(c)
This will print out "3"
I hope this helps.
+ 1
it helps Jebby, thank you