-
变量的定义
程序就是用来处理数据的,而变量就是用来存储数据的
-
Python3 的六个标准数据类型中:
不可变数据(3 个):Number(数字)、String(字符串)、Tuple(元组); 可变数据(3 个):List(列表)、Dictionary(字典)、Set(集合)。
-
在Python程序中,变量是用一个变量名表示,变量名必须是大小写英文、数字和下划线(_)的组合,且不能用数字开头
-
字符串常用方法
-
find方法可以在一个较长的字符串中查找子串,他返回子串所在位置的最左端索引,如果没有找到则返回-1
a = 'abcdefghijk'
print(a.find('abc')) #the result : 0
print(a.find('abc',10,100)) #the result : 11 指定查找的起始和结束查找位置 -
join方法是非常重要的字符串方法,他是split方法的逆方法,用来连接序列中的元素,并且需要被连接的元素都必须是字符串。
a = ['1','2','3']
print('+'.join(a)) #the result : 1+2+3 -
split方法,是一个非常重要的字符串,它是join的逆方法,用来将字符串分割成序列
print('1+2+3+4'.split('+')) #the result : ['1', '2', '3', '4']
-
strip 方法返回去除首位空格(不包括内部)的字符串
print(" test test ".strip()) #the result :“test test”
-
replace方法返回某字符串所有匹配项均被替换之后得到字符串
print("This is a test".replace('is','is_test')) #the result : This_test is_test a test
-
-
常见操作练习
'''
1. str = "" 写一个函数,只去掉字符串右侧的空格,左侧的空格保留
'''
def fun1(s):
a = s[s.find('f'):]
print(a)
return a
if __name__ == '__main__':
str=' fgh '
fun1(str)
'''
2. 输入10个数字到列表中,如果输入的不是数字,则跳过,不存
'''
def fun2(a):
alist = []
while True:
if len(a) == 10:
if a.isdigit():
alist.append(a)
print("存入成功:", alist)
else:
print("请输入10位'数字'")
else:
pass
print("请输入'10位'数字")
return a
if __name__ == '__main__':
a=input("请输入数字:")
fun2(a)
'''
3. 写一个函数,可以判断一个字符串是否为回文例子qwewq,函数返回true或者false
'''
def fun3(s):
if s == ''.join(reversed(s)):
print(True)
else:
print(False)
if __name__ == '__main__':
s=input("请输入字符串:")
fun3(s)
'''
4. 请手写一个函数,可以打印出 I'm "ok" it's your's 注意必须是原样输出
'''
def fun4():
a = ['I', 'm']
b = "'".join(a)
c = ['"ok"']
d = ''.join(c)
e = ["it's"]
f = ''.join(e)
g = ["your's"]
h = ''.join(g)
sum = b + " " + d + " " + f + " " + h
print(sum)
if __name__ == '__main__':
fun4()
'''
5. str2 = "This is the voa special English,health,report" 写一个函数,统计字符串中单词出现的个数,注意是单词而不是字母
'''
def fun5():
str2 = "This is the voa special English,health,report"
a = str2.split()[:-2]