Python_基础_Day_1
Posted 起航追梦人
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python_基础_Day_1相关的知识,希望对你有一定的参考价值。
一、变量
由字母、数字和下划线组成且不能以数字开头
二、标准数据类型
五种类型:数字(Numbers)、字符串(String)、列表(List)、元组(Tuple)、字典(Dictionary)
三、数字类型
1、四种类型:int(整型)、long(长整型)、float(浮点型)、complex(复数)
2、基本模块:math模块、cmath模块
四、字符串类型
1、字符串类型不可变(不能修改)
2、字符串运算符
a = ‘hello‘ b = ‘world‘ print(a + b) # helloworld,字符串连接 print(a * 2) # hellohello,重复输出字符串 print(a[0:3]) # hel,截取,取头不取尾
3、内置函数
S.capitalize():把字符串的第一个字母转为大写
S.casefold():把字符串的第一个字母转为小写
S.center(width[, fillchar]):返回一个宽度为width,参数为fillchar(默认为空)的居中字符串
S.count(sub, start=None, end=None):在start和end范围中查找子串sub在S中的数量
S.encode(encoding=‘utf-8‘, errors=‘strict‘):默认返回一个utf-8编码的字符串
S.startswith(self, prefix, start=None, end=None):在start和end范围中检查字符串S是否以prefix开头,是返回True,不是返回False
S.endswith(self, suffix, start=None, end=None):在start和end范围中检查字符串S是否以suffix结尾,是返回True,不是返回False
S.expandtabs(tabsize=8):把字符串中的 tab 符号(‘\t‘)转为空格
S.find(sub, start=None, end=None):从左向右在start和end范围中检查子串sub是否在S中,在则返回起始索引值,不在则返回-1
S.rfind(sub, start=None, end=None):从右向左查找
S.index(sub, start=None, end=None):从左向右在start和end范围中检查子串sub是否在S中,在则返回起始索引值,不在报错
S.rindex(sub, start=None, end=None):从右向左查找
S.format(*args, **kwargs):格式化输出
S.format_map(mapping)
S.join(iterable)::把iterable序列中的元素用指定的S字符连接成一个新的字符串
S.ljust(width[, fillchar]):以指定的宽度左对齐显示,默认以空格填补,宽度小于字符串的长度则显示原字符串
S.rjust(width[, fillchar]):以指定的宽度右对齐显示,默认以空格填补,宽度小于字符串的长度则显示原字符串
S.replace(old, new[, count]):把字符串S中的old字符替换成new字符,如果没有指定count则全替换,否则按count数值来确定替换次数
S.split(sep=None, maxsplit=-1):通过字符sep分割字符串返回一个列表,sep默认为空,maxsplit确定分割次数
S.rsplit(sep=None, maxsplit=-1):从右向左分割
S.splitlines([keepends]):按行分割
S.strip([chars]):去除字符串str前后参数chars(默认为空格),返回去除后的新字符串
S.lstrip([chars]):去除左边
S.rstrip([chars]):去除右边
a = ‘hello‘ b = ‘world‘ c = ‘Abc‘ # 1、capitalize、casefold print(a.capitalize()) # Hello print(a) # hello print(c.casefold()) # abc print(c) # Abc # 2、center print(a.center(10)) # hello print(a.center(10,‘*‘)) # **hello*** # 3、count print(a.count(‘l‘)) # 2 print(a.count(‘l‘,0,3)) # 1 # 4、encode print(a.encode()) # b‘hello‘ # 5、startswith、endswith print(a.startswith(‘h‘)) # True print(a.startswith(‘a‘)) # False print(a.endswith(‘o‘)) # True print(a.endswith(‘c‘)) # False # 6、expandtabs print(‘a\tb‘.expandtabs()) # a b # 7、find、index、rfind、rindex print(a.find(‘a‘)) # -1 print(a.find(‘h‘)) # 0 print(a.rfind(‘h‘)) # 0 print(a.index(‘h‘)) # 0 #print(a.index(‘a‘)) # ValueError: substring not found # 8、join print(‘-‘.join([‘a‘,‘b‘,‘c‘])) # a-b-c # 9、rjust、ljust print(a.ljust(10)) # hello print(a.rjust(10)) # hello # 10、replace print(a.replace(‘l‘,‘e‘)) # heeeo # 11、split、rsplit、splitlines print(a.split(‘e‘)) # [‘h‘, ‘llo‘] print(‘a\nb‘.splitlines()) # [‘a‘, ‘b‘] # 12、strip、lstrip、rstrip print(‘ a ‘.strip()) # a print(‘ a ‘.lstrip()) # a print(‘ a ‘.rstrip()) # a
S.swapcase():大小写转换,大写换小写,小写转大写
str1 = "abc" str2 = "ABC" print(str1.swapcase()) #ABC print(str2.swapcase()) #abc
S.title():转为标题
S.lower():转为小写
S.upper():转为大写
s = ‘hello world‘ print(s.title()) # Hello World print(s.upper()) # HELLO WORLD print(s.lower()) # hello world
S.isalnum():如果字符串至少有一个字符并且所有字符都是字母或数字则返回True,否则返回 False
s1 = "abcdef1" s2 = "b c" s3 = "" print(s1.isalnum()) #True print(s2.isalnum()) #False print(s3.isalnum()) #Fals
S.isnumeric():与str.isnum功能相同
S.isalpha():检测字符串是否只有字母,是则返回True,否则返回False
s1 = "abc" s2 = "[email protected]" print(s1.isalpha()) #True print(s2.isalpha()) #False
S.isdecimal()
S.isdigit():检测字符串是否只有数字,是则返回True,否则返回False
s1 = "123" s2 = "[email protected]" print(s1.isdigit()) #True print(s2.isdigit()) #False
S.isidentifier()
S.islower(self):字符串至少包含一个区分大小写的字符且都为小写,则返回True,否则返回False
s1 = "123" s2 = "[email protected]" s3 = "a1c" print(s1.islower()) #False print(s2.islower()) #True print(s3.islower()) #True
S.isprintable()
S.isspace():检测字符串是否只有空格,是则返回True,否则返回False
s1 = " 3" s2 = " " print(s1.isspace()) #False print(s2.isspace()) #True
S.istitle():字符串中所有首字母大写则返回True,否则返回False
s1 = "And so On" s2 = "And So On" print(s1.istitle()) #False print(s2.istitle()) #True
S.isupper():字符串至少包含一个区分大小写的字符且都为大写,则返回True,否则返回False
s1 = "Ab" s2 = "[email protected]" print(s1.isupper()) #False print(s2.isupper()) #True
max(S):返回最大字符串
min(S):返回最小字符串
s = "abca" print(max(s)) #c print(min(s)) #a
以上是关于Python_基础_Day_1的主要内容,如果未能解决你的问题,请参考以下文章