0
WHAT IS print(s) used for??
3 Answers
+ 12
print() is a function used to print stuff to the output console.
e.g.
s = 5
print(s)
This prints the value of s, which is 5, to the output screen.
+ 1
display text on screen
0
it prints the value of s at the output.