如何查看python的内置变量
发布网友
发布时间:2022-04-23 03:05
我来回答
共1个回答
热心网友
时间:2022-04-18 03:58
1. 使用连接符: +
world = "World"
print "Hello " + world + " ! "
2. 使用占位符来内插
world = "World"
print "Hello %s !" % world
3. 使用函数
li = ['my','name','is','bob']
mystr = ' '.join(li)
print mystr
上面的语句中字符串是作为参数传入的,可以直接用变量替换:
begin_date = '2012-04-06 00:00:00'
end_date = '2012-04-06 23:59:59'
select * from usb where time between to_date(begin_date,'YYYY-MM-DD HH24:MI:SS') and to_date(end_date,'YYYY-MM-DD HH24:MI:SS')