第三天笔记

python数据类型学习

了解python的基本概念,表达式、语句、函数等,知道什么是标识符,有哪些注意事项,要怎么去用,命名的规则,python有哪些关键字。关于python的数据类型大概有哪些,简单的用法。重点学习了字符串,什么是字符串,字符串怎么用,拼接、格式化、占位符等具体怎么操作。最后是变量的概念和运算。

字符串练习

"s="+"hello"    #字符串拼接
's=hello'
s="hello"
print("s=",s)   #字符串作为参数
s= hello
"%s 是个好人." %"狗蛋"  #占位符
'狗蛋 是个好人.'
"%s 是个好人,今年 %d 了。" %("狗蛋",20)  #占两位
'狗蛋 是个好人,今年 20 了。'
a = "小明"
b = "小红"
f"{a}和{b}是好朋友。"     #有变量的形式
'小明和小红是好朋友。'
url="{}今年20了。"
New_url=url.format("狗蛋")    #.format 用法
print(New_url)
狗蛋今年20了。

笔记大纲

参考资料:

1、https://www.runoob.com/python3/python3-data-type.html

2、https://www.yuque.com/docs/share/2bbadb0e-f541-40cc-80c7-8442b699f4b2?#

3、https://docs.qq.com/doc/DZFhqaHBQRVZBQnpB

4、https://blog.csdn.net/wklken/article/details/6311323

你可能感兴趣的:(第三天笔记)