print()

DisplaysΒ 
aΒ 
printableΒ 
valueΒ 
orΒ 
informationΒ 
inΒ 
theΒ 
outputΒ 
console.
print("value")
print("Hello")
print(5)

sep

SeparatesΒ 
differentΒ 
words/entitiesΒ 
withΒ 
anyΒ 
stringΒ 
value.
IfΒ 
theΒ 
sepΒ 
commandΒ 
isΒ 
notΒ 
used,Β 
pythonΒ 
byΒ 
defaultΒ 
givesΒ 
spaceΒ 
(whitespace)Β 
asΒ 
theΒ 
defaultΒ 
separator.
print("box1","box2", sep = "symbol")
print(1,"how""are", "you doing", sep = "#")

end

AddsΒ 
theΒ 
givenΒ 
symbolΒ 
atΒ 
theΒ 
endΒ 
ofΒ 
theΒ 
statement.
IfΒ 
theΒ 
endΒ 
commandΒ 
isΒ 
notΒ 
used,Β 
pythonΒ 
byΒ 
defaultΒ 
goesΒ 
toΒ 
theΒ 
nextΒ 
line.
print("box" , end = "symbol")
print("How are you", end = "?" )