Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

end in print python

# Default is "
"

print("Python")
print("is cool")
# Console output:
# Python
# is cool

print("Python", end=" definitely ")
print("is cool")
# Console output:
# Python definitely is cool
 
PREVIOUS NEXT
Tagged: #print #python
ADD COMMENT
Topic
Name
1+1 =