“End Python Print with Space” Código de respuesta

Cómo imprimir sin espacio en Python 3

>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc
sagar3745

End Python Print with Space

print('G','F', sep='', end='')
print('G')
#\n provides new line after printing the year
print('09','12','2016', sep='-', end='\n')
 
print('prtk','agarwal', sep='', end='@')
print('geeksforgeeks')


Output:
GFG
09-12-2016
prtkagarwal@geeksforgeeks
Encouraging Elephant

Respuestas similares a “End Python Print with Space”

Preguntas similares a “End Python Print with Space”

Más respuestas relacionadas con “End Python Print with Space” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código