python基础_特殊符号

# 回车符

# 换行符

#s 空格

# tab符号,不知道?开个txt文本,然后按电脑的tab键,就是caps lock上面那个,卧槽,看到一个大长空格(也可能是个超短空格),这个就是tab符

#其他基本不会用,这几个够用了

#%d 数字

print '%d' %2

#%s 字符串

print '%s' %'abc'

#%.2f 浮点,.2是显示小数点位数

print '%.2f' %1.2345

原文地址:https://www.cnblogs.com/xiu123/p/8280969.html