输出
print(a,b)
注释
#
查看类型
typy()
数字转换字符串
str(100)
数字转字符串
int("100")
float("100")
格式化
a = 100 b = 200 c = "我现在有%s,你欠我%s" % (a,b)
%s字符串
%d整数
%.2f浮点数
快速格式化
name = "小明" age = 13 score = 60.5 print( f"姓名{name},年龄{age},成绩{score}" )
标签:name,python,基础,语法,print,score,字符串,100 From: https://www.cnblogs.com/fan-wang/p/17858508.html