字符串操作 name = "alex" print(name.capitalize()) #首字母大写 name = "my name is alex" print(name.count("a")) #统计字母"a"的数量 print(name.center(50,"-")) #一共打印50个字符,变量name在中间,其余用"-"补足 print(name.endswith("…
字符串操作 字符串是可以通过下标来进行取值的,但是由于字符串是不可变变量,不能通过下标来修改它的值(形式如 字符串[下标]),下标从0开始,最大下标值是字符串长度减1,即len(string)-1 Python针对字符串有个比较帅气的判断常常用在for循环里示意如下: names=”Tinada, Niuer, Zhangsan, Lisi, Wangwu, Zhaoliu” name=input(“Plz input the name: ”) for name in names: Print(…
字符串操作 一.输出重复字符串 print('smile'*6) #输出6个smile 二.通过引索输出部分字符串 print('smile'[1:]) print('smile'[1:3]) #输出 #mile #mi #ims 此处与之前的列表切片规则相同. 三.用in检查字符串内容 a = 'Tomorrow will be a better day. ' print('day' in a) print('zzz' in a) #输出 #True #False 若字符串中没有对应的字符串,…
字符串的表示 python中的字符串是一个常量,可以使用单引号'',双引号""或三引号""" """来创建一个字符串常量.,如下: s1='Hello world!' s2="Hello world!" s3=""" Hello world! I am Chinese! I love my country! """ 为什么python要…
#Author:ersa name = "ersa" #首字母大写capitalize() print(name.capitalize()) name = "my name is ersa" #字符串中 子串 重复的次数 print(name.count("a")) #center() 字符串打印输出在行中间,并指定打印长度,不够可用其他字符补充 print(name.center(50,'-')) #endswith() 判断字符串以什么结尾?…
写一个简单的脚本,循环遍历单层文件夹,检查源代码中是否有一些特殊的类. import os import codecs dirroot = "......" line_num = 0 def ContainsSpecialWords(line): for w in ["Double","Integer","Float","Long","Date"]: if w in line: if &…