2014年11月26日 星期三

[python] python快速筆記2

變數轉成字串

Number = job.get_last_buildnumber()
NumberString = str(Number)

字串寫入換行

f.write('abc')
f.write('\n')
f.write('123')

output file:

abc
123


字串相加

URLString = str(ww.yahoo.com)
URLString += '/mail'
print URLString

output:
www.yahoo.com/mail




沒有留言:

張貼留言