字符串使用的一些小知识
python多行注释的快捷键是选中多行按crtl+/(取消一样)
1、字符串格式化
字符串格式化的几种方法
使用 % 或者 .format()
year=input("请输入年")
month=input('请输入月')
day=input('请输入日')
print('%s year %s month %s day' % (year,month,day))
print('{} year {} month {} day' .format(year,month,day))
.format()使用的时候,注意使用的是大括号{}
python3中使用string.template
在模板中可以使用字典来提供对应的键值。
python3中取消了长整型,因此20L这样的表示在python3中是错误的。