1. 程式人生 > >Python-Print 輸出

Python-Print 輸出

print 預設輸出是換行的,如果要實現不換行需要在變數末尾加上逗號 ,

#!/usr/bin/python# -*- coding: UTF-8 -*-

x="a"
y="b"# 換行輸出print x
print y

print'---------'# 不換行輸出print x,print y,# 不換行輸出print x,y

以上例項執行結果為:

a
b
---------
a b a b