Python 字符串格式化
Posted 沙漠金子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 字符串格式化相关的知识,希望对你有一定的参考价值。
字符格式化输出
isdigit # 是否是数字
占位符: %s %d %f
print (%s ,%d,%s %(1,2,3,))
例子:
name = input("请输入你的名字 :")
age = input("your is age :")
hangye = input("your is hangye : ")
salay = input("yous is salay :")
if salay.isdigit() :
salay= int(salay)
else:
exit("error")
msg = ‘‘‘-----------------info name %s-----------------------
name = %s
age = %s
hangye = %s
salay = %f
-------------------------end of-------------
‘‘‘ % (name,name,age,hangye,salay)
print(msg)
###############################################################
数据类型初识
数字 :
整数 (整型与长整型) int(整型)2**30 long(长整型) 2**31
python3 已经不做区分
布尔:两种状态
真 & 假
字符串: 一切对象,皆可分类
salay.isdigit() ##判断是salay是否是数字
salay.is
字符串处理(# 后面讲完列表在分析讲解)
循环:: for while
有限循环
无限循环==死循环
for ......
.......
else ...
.......
以上是关于Python 字符串格式化的主要内容,如果未能解决你的问题,请参考以下文章
在 Python 格式(f-string)字符串中,!r 是啥意思? [复制]