python_变量
字符串
1.字符串方法修改大小写
mes = 'hi, im testing string operation'
print(mes)
print(mes.title())
print(mes.lower())
print(mes.upper())
2.字符串拼接
拼接有两种形式,可以在print函数中完成;也可以通过定义新字串,在定义新子串中完成
3.删除空白
删除空白是字符串内置函数。
有三种方式,分别对应删除左右两处、左端、右端
res = ' im learning python'
print(res.strip())
print(res.lstrip())
print(res.rstrip())
4.用符号划分数组
用法:strName.split('xxx')
ints = []
info = 'sep, sep2, sep3, sep4'
for one in info.split(','):
ints.append(one)
print(ints)
运行结果:['sep', ' sep2', ' sep3', ' sep4']
字符串info
被按,
分割成一个个小元素;一个个小元素被添加进了预先定义的列表ints
中
数字
1.幂运算
整数可以通过使用**
来完成幂运算
x = 2
y = 3
print(x ** y)
运行结果:9
2.数字类型的变换
在输出时,需要把数字转换为字符串才能完成输出,否则会报错。
age = 23
print('it is 2022, and im ' + str(age) + 'years old')
print('it is 2022, and im ' + age + 'years old')
#上式会报错,因为没有将数字类型转化为字符串类型输出