您的位置:首页 > 文旅 > 美景 > 肖鸿昌建筑网站_提升学历被骗怎么投诉_百度seo优化关键词_软文范例100例

肖鸿昌建筑网站_提升学历被骗怎么投诉_百度seo优化关键词_软文范例100例

2024/12/27 0:59:43 来源:https://blog.csdn.net/qq_47798402/article/details/144433458  浏览:    关键词:肖鸿昌建筑网站_提升学历被骗怎么投诉_百度seo优化关键词_软文范例100例
肖鸿昌建筑网站_提升学历被骗怎么投诉_百度seo优化关键词_软文范例100例

1. 字符串的拼接 print(var_1 + var_2)  

print("supercarry" + "doinb")
name = "doinb"
sex = "man"
score = "100"
print("sex:" + sex + " name:" + name + " score:" + score)

        注意:+ 只适用于字符变量和字面量的拼接,不能将整数、浮点数和字符串混在一起,否则会报错

2. 通过占位符实现各种变量的拼接

        “%占位符” % 变量

(1)%d 整数占位符

(2)%f 浮点数占位符

(3)%s 字符串占位符

name = "doinb"
print("this is supercarry%s" % name)
print("%s is Champion , this is supercarry%s" % (name, name))score_1 = 100
score_2 = 60
print("the score of doinb is %s" % score_1)
print("the score of doinb is %d     the score of lwx is %d" % (score_1, score_2))salary_1 = 6666.66
salary_2 = 100000000
print("the salary of doinb is %f" % salary_1)
print("the score of doinb is %f     the score of lwx is %f" % (salary_1, salary_2))print("%s is Champion, the score of %s is %d, the salary of %s is %f" % (name, name, score_1, name, salary_2))

注意:整数、浮点数可通过%s转化为字符串

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com