- 博客(3)
- 收藏
- 关注
原创 Python入门学习笔记(三)
Day3又见str-索引str h e l l o索引 0 1 2 3 4贴片操作(顾头不顾尾)s=‘Hello’s[1:3]out:‘He’s[2:4]out:‘ll’字符串不可变对某个字符串如str重新赋值时,没有改变str本身,只是改变了str指向的地址,即给新值提供新地址,让str指向新地址。旧地址会被解释器定时回收。-字符串常用操作a=“Hello world”str.center(整数,间隔符号)str.count(要查找的
2021-02-26 18:13:44 17638
原创 Python入门学习笔记(二)
Day2For循环For循环Tips:range(10)=(0,10)=[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]print(list(range(10)))out:[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]age=26for i in range(3): geuss = int(input("输入你的猜测:")) if geuss> age: print("猜大了") if geuss< age: print("猜小了") e
2021-02-23 18:00:54 137
原创 Python入门学习笔记(一)
变量变量命名规范变量修改与删除变量修改注意不同变量赋值时的变量地址变化变量删除del 变量名数据类型初识数字:int,float字符串:单引号,双引号,三引号都行,但三引号特殊用途在于换行字符,如:print''' hah\n haha\n hah '''大小写变化:str.upper(); str.lower();center函数:str.center(字节数,“填充字符”),如:str="name"str.center(50,"-")out:---
2021-02-22 12:20:55 116
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人