python学习-14 基本数据类型3
2020-12-13 02:47
标签:for 基本数据类型 lov exit 代码块 code print div python学习 1.字符串 获取字符串的字符,例如: 运算结果: 2.list列表 用[ ]表示的 ,例如:a = [love,friend,home,"你好"] 运算结果: 3.利用循环获取字符串中的每个字符 第一种: 运算结果: 第二种: for 变量名 in 字符串: 代码块 print 运算结果: 注意:字符串一旦创建无法修改,如果要修改,则会创建新的字符串。 4.替换 运算结果: python学习-14 基本数据类型3 标签:for 基本数据类型 lov exit 代码块 code print div python学习 原文地址:https://www.cnblogs.com/liujinjing521/p/11053872.htmltest = ‘abcd‘
a= test[0] # 通过索引,下标,获取字符串中的某一个字符
print(a)
b = test[0:1] # 通过下标的 范围获取字符串中的一些字符 #0
print(b)
c =len(test) # 获取字符串中有多少字符组成(不是下标)
print(c)
a
a
4
Process finished with exit code 0
test = [123,‘adss‘]
print(type(test),test)
class ‘list‘> [123, ‘adss‘]
Process finished with exit code 0
test = ‘你好\t谢谢‘
count = 0
while count len(test):
a=test[count]
print(a)
count += 1
你
好
谢
谢
Process finished with exit code 0
test = ‘你好\t谢谢‘
for a in test:
print(a)
你
好
谢
谢
Process finished with exit code 0
test = ‘abcabcabc‘
a = test.replace(‘a‘,‘q‘,1) # 将q替换第一个a
print(a)
qbcabcabc
Process finished with exit code 0