+ 2
In python there is a print tag but what is it for?
Plz comment below
3 Answers
+ 2
Btw it's not a tag, it's referred to as a function, and it is used to print a string, the value of a variable, etc.....
Hope it helps đ
+ 2
print is a predefined method/function in python which prints anything inside it.
Ex-
a="Hali"
print (a)
Output-
Hali



