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 = "?" )