1.使用連接符:+
world="World"
print"Hello"+world+"!"
2.使用占位符來內(nèi)插
world="World"
print"Hello%s!"%world
3.使用函數(shù)
li=['my','name','is','bob']
mystr=''.join(li)
printmystr
上面的語句中字符串是作為參數(shù)傳入的,可以直接用變量替換:
begin_date='2012-04-0600:00:00'
end_date='2012-04-0623:59:59'
select*fromusbwheretimebetweento_date(begin_date,'YYYY-MM-DDHH24:MI:SS')andto_date(end_date,'YYYY-MM-DDHH24:MI:SS')