📜  如何在 python 3 中无空格打印 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:25.936000             🧑  作者: Mango

代码示例2
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