码迷,mamicode.com
首页 > 编程语言 > 详细

python 1

时间:2015-04-10 10:57:06      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

1. string concatenation 

  print "You " + "and " + "Me" -- You and Me 

  #Make sure you include the spaces after "You" and "and"

2. print ? Date and Time 4/6

  print "%s/%s/%s" % (now.month, now.day,now.year) and 

  print ‘%s/%s/%s‘% (now.month, now.day,now.year)

  单引号和双引号结果相同?

python 1

标签:

原文地址:http://www.cnblogs.com/njuzwr/p/4413736.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!