Python 基础:字符串,数字,变量 1. 字符串 (信息的一种表达方式) a. 使用引号创建字符串 b. 单引号,双引号,三引号: ', ", ''', """ c. print函数: print('hello', end=',');print('world', end=';') d. 和字符串显示格式相关的应该想到print函数,print函数可以指定不同的结束字符串. e. ascii art """ ##### #######…
Python的字符串格式化有两种方式: 百分号方式.format方式 百分号的方式相对来说比较老,而format方式则是比较先进的方式,企图替换古老的方式,目前两者并存.[PEP-3101] This PEP proposes a new system for built-in string formatting operations, intended as a replacement for the existing '%' string formatting operator. 1.百分号…
字符串的常用操作 字符串与数组一样,支持索引操作.切片与遍历 索引.切片操作: name = 'jason' name[0] 'j' name[1:3] 'as' 遍历: for char in name: print(char) j a s o n python的字符串是不可变的(immutable),因此不能直接改变字符串内部的字符 s = 'hello' s[0] = 'H' Traceback (most recent call last): File "<stdin>&qu…
一.变量及条件判断 1.字符串.布尔类型.float.int类型,None都是不可变变量 2.字符串是不可变变量,不可变变量就是指定义之后不能修改它的值 3.count +=1和count=count+1是一样的 count-=1 count*=1 count/=1 内容补充: None是空,代表什么都没有,但是它不是空字符串 if 条件判断的 or 与 a or b a.b 只要一个为True条件就为真 and 且 a and b a.b都为真,条件才为真 in 在不在它里面 is 判断的是内…
capitalize(self) 返回值:将字符串的第一个首字母变成大写,其他字母变小写 s = 'hello World' ss = s.capitalize() print(ss) Hello world casefold(self) 返回值:字符串内所有字符大写变小写.魔法范围比.lower()大. s = 'Are you Ok ?' ss = s.casefold() print(ss) are you ok ? lower(self) 返回值:字符串内所有字符大写变小写.魔法范围比c…
#字符串常用语法name = "wang yan li"print(name.capitalize())#首字母大写print(name.count("n"))#统计字母print(name.center(50,"-"))#共50个字符,name放中间,其他用-补上print(name.endswith("li"))#判断字符串以什么结尾print(name.expandtabs(tabsize=30))#把字符串里的tab键…