当前位置:   article > 正文

蓝桥杯Python组知识点_python蓝桥杯c组基础知识

python蓝桥杯c组基础知识

一、基础知识

1.基本输入输出

# 单行输入
num1 = input()  # 返回一个字符串
num2 = int(input())  # 将字符串转为整型
a, b, c = map(int, input().split())  # 一行输入多个数字,并以空格分开
lst1 = list(map(int, input().split()))  # 一行输入多个数字,并以空格分开,返回一个列表
print(num1)
print(num2)
print(a,b,c)
print(lst1)

#多行输入
lst12 = [int(input()) for _ in range(3)]
print(lst12)
lst13 = [list(map(int, input().split())) for _ in range(3)]
print(lst13)

# 输入
12
45
12 23 34
56 66 77
1
2
3
1 2 3
4 5 6
7 8 9
# 输出
12
45
12 23 34
[56, 66, 77]
[1, 2, 3]
[[1, 2, 3], [4, 5, 6], [7, 8, 9]]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

2.字符列表连接

lst2 = ['hello', 'world']
print(''.join(lst2))

# 输出
helloworld
  • 1
  • 2
  • 3
  • 4
  • 5

3.字母的大小写转换

str1 = 'hello'
str2 = 'WORLD'
print(str1)
print(str1.upper())
print(str2)
print(str2.lower())

# 输出
hello
HELLO
WORLD
world
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

4.匿名函数lambda

def square(a):
    return a * a
print(list(map(square, [1, 2, 3])))
print(list(map(lambda x: x*x, [1, 2, 3])))
lst3 = [[2, 4],
     [8, 9],
     [4, 5],
     [5, 10]]
print(sorted(lst3, key=lambda x: x[0]))

# 输出
[1, 4, 9]
[1, 4, 9]
[[2, 4], [4, 5], [5, 10], [8, 9]]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

5.进制转换

print(hex(16), oct(16), bin(16))
# 输出
0x10 0o20 0b10000
  • 1
  • 2
  • 3

6.字符与整型之间的转换

print(chr(97), ord('a'))
# 输出
a 97
  • 1
  • 2
  • 3

7.格式化保留小数点后几位小数

num3 = 3.1415926
print(f'{
     num3:.3f}')
# 输出
3.142
  • 1
  • 2
  • 3
  • 4
  • 5

8.列表排序

lst4 = [3, 1, 45, 67, 21]
lst5 = sorted(lst4, reverse=True)  # sorted()返回一个新的排序后的列表
print(lst4)
print(lst5)
lst4.sort(reverse=True) # .sort()直接对原来的列表进行重新的排序
print(lst4)

# 输出
[3, 1, 45, 67, 21]
[67, 45, 21, 3, 1]
[67, 45, 21, 3, 1]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

9.str的内建函数

str3 = 'hello world'  # 要注意这些内置函数都是返回一个新的字符串对象,并不是对原本的字符串进行修改
str4 = 'HELLO WORLD'
str5 = 'Hello World'
print(str3.upper())  
print(str4.lower())
print(str5.swapcase())  # 字符串大小写互换
print(str3.capitalize())  # 字符串首个字母大写
print(str3.title())  # 字符串每个单词首个字母大写
print(str3.find('l', 0, -1))  # 在指定范围内搜索第一个匹配的字符并返回其索引,若没有匹配项则返回-1
print(str3.index('l'))  # 搜索第一个匹配的字符并返回其索引,若没有匹配项则报错
print(str3.rfind('l', 0, -1))  # 从后往前找第一个匹配的字符并返回其索引,若没有匹配项则返回-1
print(str3.count('ll'))  # 统计子字符串在字符串中出现的次数
print(str3.replace('l', '*', 3))  # 用新字符替换旧字符指定次数
print(str3.strip('h'))  # 删除字符串首尾指定的字符,只能删除字符串首尾的字符
print(str3.split())  # 以指定的字符为分隔符,将字符串分割成一个列表
print('*'.join(str3))  # 用指定的字符将字符串连接成一个新的字符串
print(str3)
print(str4)
print(str5)

# 输出
HELLO WORLD
hello world
hELLO wORLD
Hello world
Hello World
2
2
9
1
he**o wor*d
ello world
['hello', 'world']
h*e*l*l*o* *w*o*r*l*d
hello world
HELLO WORLD
Hello World
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37

10.list的内建函数

lst14 = [1, 2,
    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/419624
    推荐阅读
    相关标签
      

    闽ICP备14008679号