1.

Give the syntax for print ( ) function?

Answer»

The syntax for print ( ) is as follows:

Example:

print (“string to be displayed as output ” )

print (variable)

print (“String to be displayed as output ” , variable) 

print (“String 1 ” , variable, “String 2” , variable, “String 3”)



Discussion

No Comment Found