输入语句并说明其效果 >>> a="中华" >>> b='文明' >>> c='''历史悠久''' >>> d=str(5000) >>> e=a+b+c+',上下'+d+'年' >>> a >>> b >>> c >>> d >>> e >>> e[1] >>> e[2:6] >>> e[::2] >>> e[-2:2:-1] >>> ord('a') >>> ord('A') >>> ord('0') >>> ord(' ') >>> chr(66) >>> s1="I love China" >>> max(s1) >>> min(s1) >>> len(s1) >>> s2=s1*2 >>> s2 >>> sorted(s1) >>> s1 >>> "china" in s1 >>> del s2 >>> s2 >>> s1.lower() >>> s1.upper() >>> s1.title() >>> s1.find('o') >>> s1.find('c') >>> s1.index('a') >>> s1.count('i') >>> s1.split() >>> s1.split('o') >>> "1.23".isdigit() >>> s1[2:5].isalpha() >>> s1[2:5].islower() >>> s1[0].isupper() >>> "北京".center(10,"*") >>> "北京".ljust(10,"-") >>> s1.startswith("I") >>> s1.endswith("china") >>>"+".join(["1","2","3"]) >>> s2=s1.replace(" ","-") >>> s2 >>> s1
时间: 2023-08-14 20:08:12 浏览: 79
PHP中“=>
a="中华" # 定义一个字符串变量 a,值为"中华"
b='文明' # 定义一个字符串变量 b,值为"文明"
c='''历史悠久''' # 定义一个字符串变量 c,值为"历史悠久"
d=str(5000) # 定义一个字符串变量 d,值为"5000",先将数字转为字符串
e=a+b+c+',上下'+d+'年' # 定义一个字符串变量 e,值为 a+b+c+",上下"+d+"年"
a # 输出字符串变量 a
# Output: '中华'
b # 输出字符串变量 b
# Output: '文明'
c # 输出字符串变量 c
# Output: '历史悠久'
d # 输出字符串变量 d
# Output: '5000'
e # 输出字符串变量 e
# Output: '中华文明历史悠久,上下5000年'
e[1] # 输出字符串变量 e 的第二个字符
# Output: '华'
e[2:6] # 输出字符串变量 e 的第二到第六个字符
# Output: '文明历史'
e[::2] # 输出字符串变量 e 的偶数位置字符
# Output: '中文悠,下年'
e[-2:2:-1] # 输出字符串变量 e 的倒数第二到第二个字符
# Output: '年0下'
ord('a') # 输出字符 'a' 的 ASCII 码值
# Output: 97
ord('A') # 输出字符 'A' 的 ASCII 码值
# Output: 65
ord('0') # 输出字符 '0' 的 ASCII 码值
# Output: 48
ord(' ') # 输出字符 ' ' 的 ASCII 码值
# Output: 32
chr(66) # 输出 ASCII 码值为 66 的字符
# Output: 'B'
s1="I love China" # 定义一个字符串变量 s1,值为 "I love China"
max(s1) # 输出字符串变量 s1 中 ASCII 码值最大的字符
# Output: 'v'
min(s1) # 输出字符串变量 s1 中 ASCII 码值最小的字符
# Output: ' '
len(s1) # 输出字符串变量 s1 的长度
# Output: 12
s2=s1*2 # 定义一个字符串变量 s2,值为 s1 重复两遍
s2 # 输出字符串变量 s2
# Output: 'I love ChinaI love China'
sorted(s1) # 将字符串变量 s1 按照字典序排序
# Output: [' ', 'C', 'I', 'a', 'e', 'h', 'i', 'l', 'n', 'o', 'v']
s1 # 输出字符串变量 s1
# Output: 'I love China'
"china" in s1 # 判断字符串 "china" 是否在字符串变量 s1 中
# Output: False
del s2 # 删除字符串变量 s2
# s2 # 因为 s2 已经被删除,所以输出 s2 会出错
s1.lower() # 将字符串变量 s1 中的所有大写字母转为小写字母
# Output: 'i love china'
s1.upper() # 将字符串变量 s1 中的所有小写字母转为大写字母
# Output: 'I LOVE CHINA'
s1.title() # 将字符串变量 s1 中的所有单词的首字母转为大写字母
# Output: 'I Love China'
s1.find('o') # 返回字符串变量 s1 中第一个 'o' 的索引值
# Output: 3
s1.find('c') # 返回字符串变量 s1 中第一个 'c' 的索引值
# Output: 7
s1.index('a') # 返回字符串变量 s1 中第一个 'a' 的索引值
# Output: 2
s1.count('i') # 返回字符串变量 s1 中 'i' 出现的次数
# Output: 1
s1.split() # 将字符串变量 s1 按照空格分割成一个列表
# Output: ['I', 'love', 'China']
s1.split('o') # 将字符串变量 s1 按照 'o' 分割成一个列表
# Output: ['I l', 've China']
"1.23".isdigit() # 判断字符串 "1.23" 是否只包含数字字符
# Output: False
s1[2:5].isalpha() # 判断字符串变量 s1 中从第三个到第五个字符是否只包含字母
# Output: False
s1[2:5].islower() # 判断字符串变量 s1 中从第三个到第五个字符是否只包含小写字母
# Output: True
s1[0].isupper() # 判断字符串变量 s1 的第一个字符是否为大写字母
# Output: True
"北京".center(10,"*") # 将字符串 "北京" 居中,总长度为 10,不足部分用 "*" 填充
# Output: '***北京***'
"北京".ljust(10,"-") # 将字符串 "北京" 左对齐,总长度为 10,不足部分用 "-" 填充
# Output: '北京--------'
s1.startswith("I") # 判断字符串变量 s1 是否以 "I" 开头
# Output: True
s1.endswith("china") # 判断字符串变量 s1 是否以 "china" 结尾
# Output: False
"+".join(["1","2","3"]) # 将列表 ["1", "2", "3"] 中的元素用 "+" 连接成一个字符串
# Output: '1+2+3'
s2=s1.replace(" ","-") # 将字符串变量 s1 中的所有空格替换为 "-"
s2 # 输出新的字符串变量 s2
# Output: 'I-love-China'
阅读全文