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

python-字符串格式化

时间:2018-06-02 19:37:07      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:type   oda   str   小数   格式化   分数   保留   %s   core   

附录:上课代码
import datetime
user = ‘yanhx‘
today = datetime.datetime.today() #获取到今天的日期
# print(type(user))
# print(type(today))
today = str(today)
# int str
# msg = ‘欢迎‘+user+‘光临,今天的日期是‘+today
# msg = ‘欢迎%s光临,今天的日期是%s\n‘ %(user,today)
# 占位符 %s 字符串;%d 整数; %f小数
age = 18
score = 98.758
round(score,2)# round代表保留几位小数
print(round(score,2))
msg = ‘你的年龄是%d,你的分数是%f‘%(age,score)#%.2f保留两位小数
print(msg)

python-字符串格式化

标签:type   oda   str   小数   格式化   分数   保留   %s   core   

原文地址:https://www.cnblogs.com/Noul/p/9126260.html

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