当前位置:   article > 正文

python基础题库100题及答案,python基础题库选择题_python选择题

python选择题

大家好,本文将围绕python基础题库选择题及填空题及答案展开说明,python基础题库100题及答案免费是一个很多人都想弄明白的事情,想搞清楚python基础题目及解析答案需要先了解以下几个事情。

学习永远都是“理论”与“实践”相结合效果最好。

这里有python入门的120个基础练习(1~40),希望对你有用python编辑皮卡丘的编程码

01-Hello World

python的语法逻辑完全靠缩进,建议缩进4个空格。 如果是顶级代码,那么必须顶格书写,哪怕只有一个空格也会有语法错误。 下面示例中,满足if条件要输出两行内容,这两行内容必须都缩进,而且具有相同的缩进级别。

  1. print('hello world!')
  2. if 3 > 0:
  3. print('OK')
  4. print('yes')
  5. x = 3; y = 4 # 不推荐,还是应该写成两行
  6. print(x + y)

02-print

  1. print('hello world!')
  2. print('hello', 'world!') # 逗号自动添加默认的分隔符:空格
  3. print('hello' + 'world!') # 加号表示字符拼接
  4. print('hello', 'world', sep='***') # 单词间用***分隔
  5. print('#' * 50) # *号表示重复50
  6. print('how are you?', end='') # 默认print会打印回车,end=''表示不要回车

03-基本运算

运算符可以分为:算术运算符、比较运算符和逻辑运算符。优先级是:算术运算符>比较运算符>逻辑运算符。最好使用括号,增加了代码的可读性。

  1. print(5 / 2) # 2.5
  2. print(5 // 2) # 丢弃余数,只保留商
  3. print(5 % 2) # 求余数
  4. print(5 ** 3) # 53次方
  5. print(5 > 3) # 返回True
  6. print(3 > 5) # 返回False
  7. print(20 > 10 > 5) # python支持连续比较
  8. print(20 > 10 and 10 > 5) # 与上面相同含义
  9. print(not 20 > 10) # False

04-input

  1. number = input("请输入数字: ") # input用于获取键盘输入
  2. print(number)
  3. print(type(number)) # input获得的数据是字符型
  4. print(number + 10) # 报错,不能把字符和数字做运算
  5. print(int(number) + 10) # int可将字符串10转换成数字10
  6. print(number + str(10)) # str将10转换为字符串后实现字符串拼接

05-输入输出基础练习

  1. username = input('username: ')
  2. print('welcome', username) # print各项间默认以空格作为分隔符
  3. print('welcome ' + username) # 注意引号内最后的空格

06-字符串使用基础

python中,单双引号没有区别,表示一样的含义

  1. sentence = 'tom\'s pet is a cat' # 单引号中间还有单引号,可以转义
  2. sentence2 = "tom's pet is a cat" # 也可以用双引号包含单引号
  3. sentence3 = "tom said:\"hello world!\""
  4. sentence4 = 'tom said:"hello world"'
  5. # 三个连续的单引号或双引号,可以保存输入格式,允许输入多行字符串
  6. words = """
  7. hello
  8. world
  9. abcd"""
  10. print(words)
  11. py_str = 'python'
  12. len(py_str) # 取长度
  13. py_str[0] # 第一个字符
  14. 'python'[0]
  15. py_str[-1] # 最后一个字符
  16. # py_str[6] # 错误,下标超出范围
  17. py_str[2:4] # 切片,起始下标包含,结束下标不包含
  18. py_str[2:] # 从下标为2的字符取到结尾
  19. py_str[:2] # 从开头取到下标是2之前的字符
  20. py_str[:] # 取全部
  21. py_str[::2] # 步长值为2,默认是1
  22. py_str[1::2] # 取出yhn
  23. py_str[::-1] # 步长为负,表示自右向左取
  24. py_str + ' is good' # 简单的拼接到一起
  25. py_str * 3 # 把字符串重复3遍
  26. 't' in py_str # True
  27. 'th' in py_str # True
  28. 'to' in py_str # False
  29. 'to' not in py_str # True

07-列表基础

列表也是序列对象,但它是容器类型,列表中可以包含各种数据

  1. **alist = [10, 20, 30, 'bob', 'alice', [1,2,3]]
  2. len(alist)
  3. alist[-1] # 取出最后一项
  4. alist[-1][-1] # 因为最后一项是列表,列表还可以继续取下标
  5. [1,2,3][-1] # [1,2,3]是列表,[-1]表示列表最后一项
  6. alist[-2][2] # 列表倒数第2项是字符串,再取出字符下标为2的字符
  7. alist[3:5] # ['bob', 'alice']
  8. 10 in alist # True
  9. 'o' in alist # False
  10. 100 not in alist # True
  11. alist[-1] = 100 # 修改最后一项的值
  12. alist.append(200) # 向**列表中追加一项

08-元组基础

元组与列表基本上是一样的,只是元组不可变,列表可变。

  1. atuple = (10, 20, 30, 'bob', 'alice', [1,2,3])
  2. len(atuple)
  3. 10 in atuple
  4. atuple[2]
  5. atuple[3:5]
  6. # atuple[-1] = 100 # 错误,元组是不可变的

09-字典基础

  1. # 字典是key-value(键-值)对形式的,没有顺序,通过键取出值
  2. adict = {'name': 'bob', 'age': 23}
  3. len(adict)
  4. 'bob' in adict # False
  5. 'name' in adict # True
  6. adict['email'] = 'bob@tedu.cn' # 字典中没有key,则添加新项目
  7. adict['age'] = 25 # 字典中已有key,修改对应的value

10-基本判断

单个的数据也可作为判断条件。 任何值为0的数字、空对象都是False,任何非0数字、非空对象都是True。

  1. if 3 > 0:
  2. print('yes')
  3. print('ok')
  4. if 10 in [10, 20, 30]:
  5. print('ok')
  6. if -0.0:
  7. print('yes') # 任何值为0的数字都是False
  8. if [1, 2]:
  9. print('yes') # 非空对象都是True
  10. if ' ':
  11. print('yes') # 空格字符也是字符,条件为True

11-条件表达式、三元运算符

  1. a = 10
  2. b = 20
  3. if a < b:
  4. smaller = a
  5. else:
  6. smaller = b
  7. print(smaller)
  8. s = a if a < b else b # 和上面的if-else语句等价
  9. print(s)

12-判断练习:用户名和密码是否正确

  1. import getpass # 导入模块
  2. username = input('username: ')
  3. # getpass模块中,有一个方法也叫getpass
  4. password = getpass.getpass('password: ')
  5. if username == 'bob' and password == '123456':
  6. print('Login successful')
  7. else:
  8. print('Login incorrect')

13-猜数:基础实现

  1. import random
  2. num = random.randint(1, 10) # 随机生成110之间的数字
  3. answer = int(input('guess a number: ')) # 将用户输入的字符转成整数
  4. if answer > num:
  5. print('猜大了')
  6. elif answer < num:
  7. print('猜小了')
  8. else:
  9. print('猜对了')
  10. print('the number:', num)

14-成绩分类1

  1. score = int(input('分数: '))
  2. if score >= 90:
  3. print('优秀')
  4. elif score >= 80:
  5. print('好')
  6. elif score >= 70:
  7. print('良')
  8. elif score >= 60:
  9. print('及格')
  10. else:
  11. print('你要努力了')

15-成绩分类2

  1. score = int(input('分数: '))
  2. if score >= 60 and score < 70:
  3. print('及格')
  4. elif 70 <= score < 80:
  5. print('良')
  6. elif 80 <= score < 90:
  7. print('好')
  8. elif score >= 90:
  9. print('优秀')
  10. else:
  11. print('你要努力了')

16-石头剪刀布

  1. import random
  2. all_choices = ['石头', '剪刀', '布']
  3. computer = random.choice(all_choices)
  4. player = input('请出拳: ')
  5. # print('Your choice:', player, "Computer's choice:", computer)
  6. print("Your choice: %s, Computer's choice: %s" % (player, computer))
  7. if player == '石头':
  8. if computer == '石头':
  9. print('平局')
  10. elif computer == '剪刀':
  11. print('You WIN!!!')
  12. else:
  13. print('You LOSE!!!')
  14. elif player == '剪刀':
  15. if computer == '石头':
  16. print('You LOSE!!!')
  17. elif computer == '剪刀':
  18. print('平局')
  19. else:
  20. print('You WIN!!!')
  21. else:
  22. if computer == '石头':
  23. print('You WIN!!!')
  24. elif computer == '剪刀':
  25. print('You LOSE!!!')
  26. else:
  27. print('平局')

17-改进的石头剪刀布

  1. import random
  2. all_choices = ['石头', '剪刀', '布']
  3. win_list = [['石头', '剪刀'], ['剪刀', '布'], ['布', '石头']]
  4. prompt = """(0) 石头
  5. (1) 剪刀
  6. (2) 布
  7. 请选择(0/1/2): """
  8. computer = random.choice(all_choices)
  9. ind = int(input(prompt))
  10. player = all_choices[ind]
  11. print("Your choice: %s, Computer's choice: %s" % (player, computer))
  12. if player == computer:
  13. print('\033[32;1m平局\033[0m')
  14. elif [player, computer] in win_list:
  15. print('\033[31;1mYou WIN!!!\033[0m')
  16. else:
  17. print('\033[31;1mYou LOSE!!!\033[0m')

18-猜数,直到猜对

  1. import random
  2. num = random.randint(1, 10)
  3. running = True
  4. while running:
  5. answer = int(input('guess the number: '))
  6. if answer > num:
  7. print('猜大了')
  8. elif answer < num:
  9. print('猜小了')
  10. else:
  11. print('猜对了')
  12. running = False

19-猜数,5次机会

  1. import random
  2. num = random.randint(1, 10)
  3. counter = 0
  4. while counter < 5:
  5. answer = int(input('guess the number: '))
  6. if answer > num:
  7. print('猜大了')
  8. elif answer < num:
  9. print('猜小了')
  10. else:
  11. print('猜对了')
  12. break
  13. counter += 1
  14. else: # 循环被break就不执行了,没有被break才执行
  15. print('the number is:', num)

20-while循环,累加至100

因为循环次数是已知的,实际使用时,建议用for循环

  1. sum100 = 0
  2. counter = 1
  3. while counter < 101:
  4. sum100 += counter
  5. counter += 1
  6. print(sum100)

21-while-break

break是结束循环,break之后、循环体内代码不再执行。

  1. while True:
  2. yn = input('Continue(y/n): ')
  3. if yn in ['n', 'N']:
  4. break
  5. print('running...')

22-while-continue

计算100以内偶数之和。
continue是跳过本次循环剩余部分,回到循环条件处。

  1. sum100 = 0
  2. counter = 0
  3. while counter < 100:
  4. counter += 1
  5. # if counter % 2:
  6. if counter % 2 == 1:
  7. continue
  8. sum100 += counter
  9. print(sum100)

23-for循环遍历数据对象

  1. astr = 'hello'
  2. alist = [10, 20, 30]
  3. atuple = ('bob', 'tom', 'alice')
  4. adict = {'name': 'john', 'age': 23}
  5. for ch in astr:
  6. print(ch)
  7. for i in alist:
  8. print(i)
  9. for name in atuple:
  10. print(name)
  11. for key in adict:
  12. print('%s: %s' % (key, adict[key]))

24-range用法及数字累加

  1. # range(10) # [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
  2. # >>> list(range(10))
  3. # range(6, 11) # [6, 7, 8, 9, 10]
  4. # range(1, 10, 2) # [1, 3, 5, 7, 9]
  5. # range(10, 0, -1) # [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
  6. sum100 = 0
  7. for i in range(1, 101):
  8. sum100 += i
  9. print(sum100)

25-列表实现斐波那契数列

列表中先给定两个数字,后面的数字总是前两个数字之和。

  1. fib = [0, 1]
  2. for i in range(8):
  3. fib.append(fib[-1] + fib[-2])
  4. print(fib)

26-九九乘法表

  1. for i in range(1, 10):
  2. for j in range(1, i + 1):
  3. print('%s*%s=%s' % (j, i, i * j), end=' ')
  4. print()
  5. # i=1 ->j: [1]
  6. # i=2 ->j: [1,2]
  7. # i=3 ->j: [1,2,3]
  8. #由用户指定相乘到多少
  9. n = int(input('number: '))
  10. for i in range(1, n + 1):
  11. for j in range(1, i + 1):
  12. print('%s*%s=%s' % (j, i, i * j), end=' ')
  13. print()

27-逐步实现列表解析

  1. # 10+5的结果放到列表中
  2. [10 + 5]
  3. # 10+5这个表达式计算10
  4. [10 + 5 for i in range(10)]
  5. # 10+i的i来自于循环
  6. [10 + i for i in range(10)]
  7. [10 + i for i in range(1, 11)]
  8. # 通过if过滤,满足if条件的才参与10+i的运算
  9. [10 + i for i in range(1, 11) if i % 2 == 1]
  10. [10 + i for i in range(1, 11) if i % 2]
  11. # 生成IP地址列表
  12. ['192.168.1.%s' % i for i in range(1, 255)]

28-三局两胜的石头剪刀布

  1. import random
  2. all_choices = ['石头', '剪刀', '布']
  3. win_list = [['石头', '剪刀'], ['剪刀', '布'], ['布', '石头']]
  4. prompt = """(0) 石头
  5. (1) 剪刀
  6. (2) 布
  7. 请选择(0/1/2): """
  8. cwin = 0
  9. pwin = 0
  10. while cwin < 2 and pwin < 2:
  11. computer = random.choice(all_choices)
  12. ind = int(input(prompt))
  13. player = all_choices[ind]
  14. print("Your choice: %s, Computer's choice: %s" % (player, computer))
  15. if player == computer:
  16. print('\033[32;1m平局\033[0m')
  17. elif [player, computer] in win_list:
  18. pwin += 1
  19. print('\033[31;1mYou WIN!!!\033[0m')
  20. else:
  21. cwin += 1
  22. print('\033[31;1mYou LOSE!!!\033[0m')

29-文件对象基础操作

  1. # 文件操作的三个步骤:打开、读写、关闭
  2. # cp /etc/passwd /tmp
  3. f = open('/tmp/passwd') # 默认以r的方式打开纯文本文件
  4. data = f.read() # read()把所有内容读取出来
  5. print(data)
  6. data = f.read() # 随着读写的进行,文件指针向后移动。
  7. # 因为第一个f.read()已经把文件指针移动到结尾了,所以再读就没有数据了
  8. # 所以data是空字符串
  9. f.close()
  10. f = open('/tmp/passwd')
  11. data = f.read(4) # 读4字节
  12. f.readline() # 读到换行符\n结束
  13. f.readlines() # 把每一行数据读出来放到列表中
  14. f.close()
  15. ################################
  16. f = open('/tmp/passwd')
  17. for line in f:
  18. print(line, end='')
  19. f.close()
  20. ##############################
  21. f = open('图片地址', 'rb') # 打开非文本文件要加参数b
  22. f.read(4096)
  23. f.close()
  24. ##################################
  25. f = open('/tmp/myfile', 'w') # 'w'打开文件,如果文件不存在则创建
  26. f.write('hello world!\n')
  27. f.flush() # 立即将缓存中的数据同步到磁盘
  28. f.writelines(['2nd line.\n', 'new line.\n'])
  29. f.close() # 关闭文件的时候,数据保存到磁盘
  30. ##############################
  31. with open('/tmp/passwd') as f:
  32. print(f.readline())
  33. #########################
  34. f = open('/tmp/passwd')
  35. f.tell() # 查看文件指针的位置
  36. f.readline()
  37. f.tell()
  38. f.seek(0, 0) # 第一个数字是偏移量,第2位是数字是相对位置。
  39. # 相对位置0表示开头,1表示当前,2表示结尾
  40. f.tell()
  41. f.close()

30-拷贝文件

拷贝文件就是以r的方式打开源文件,以w的方式打开目标文件,将源文件数据读出后,写到目标文件。
以下是【不推荐】的方式,但是可以工作:

  1. f1 = open('/bin/ls', 'rb')
  2. f2 = open('/root/ls', 'wb')
  3. data = f1.read()
  4. f2.write(data)
  5. f1.close()
  6. f2.close()

31-拷贝文件

每次读取4K,读完为止:

  1. src_fname = '/bin/ls'
  2. dst_fname = '/root/ls'
  3. src_fobj = open(src_fname, 'rb')
  4. dst_fobj = open(dst_fname, 'wb')
  5. while True:
  6. data = src_fobj.read(4096)
  7. if not data:
  8. break
  9. dst_fobj.write(data)
  10. src_fobj.close()
  11. dst_fobj.close()

32-位置参数

注意:位置参数中的数字是字符形式的

  1. import sys
  2. print(sys.argv) # sys.argv是sys模块里的argv列表
  3. # python3 position_args.py
  4. # python3 position_args.py 10
  5. # python3 position_args.py 10 bob

33-函数应用-斐波那契数列

  1. def gen_fib(l):
  2. fib = [0, 1]
  3. for i in range(l - len(fib)):
  4. fib.append(fib[-1] + fib[-2])
  5. return fib # 返回列表,不返回变量fib
  6. a = gen_fib(10)
  7. print(a)
  8. print('-' * 50)
  9. n = int(input("length: "))
  10. print(gen_fib(n)) # 不会把变量n传入,是把n代表的值赋值给形参

34-函数-拷贝文件

  1. import sys
  2. def copy(src_fname, dst_fname):
  3. src_fobj = open(src_fname, 'rb')
  4. dst_fobj = open(dst_fname, 'wb')
  5. while True:
  6. data = src_fobj.read(4096)
  7. if not data:
  8. break
  9. dst_fobj.write(data)
  10. src_fobj.close()
  11. dst_fobj.close()
  12. copy(sys.argv[1], sys.argv[2])
  13. # 执行方式
  14. # cp_func.py /etc/hosts /tmp/zhuji.txt

35-函数-九九乘法表

  1. def mtable(n):
  2. for i in range(1, n + 1):
  3. for j in range(1, i + 1):
  4. print('%s*%s=%s' % (j, i, i * j), end=' ')
  5. print()
  6. mtable(6)
  7. mtable(9)

36-模块基础

每一个以py作为扩展名的文件都是一个模块。

  1. star.py:
  2. hi = 'hello world!'
  3. def pstar(n=50):
  4. print('*' * n)
  5. if __name__ == '__main__':
  6. pstar()
  7. pstar(30)
  8. call_star.py中调用star模块:
  9. import star
  10. print(star.hi)
  11. star.pstar()
  12. star.pstar(30)

37-生成密码/验证码

此文件名为:randpass.py
思路:
1、设置一个用于随机取出字符的基础字符串,本例使用大小写字母加数字
2、循环n次,每次随机取出一个字符
3、将各个字符拼接起来,保存到变量result中

  1. from random import choice
  2. import string
  3. all_chs = string.ascii_letters + string.digits # 大小写字母加数字
  4. def gen_pass(n=8):
  5. result = ''
  6. for i in range(n):
  7. ch = choice(all_chs)
  8. result += ch
  9. return result
  10. if __name__ == '__main__':
  11. print(gen_pass())
  12. print(gen_pass(4))
  13. print(gen_pass(10))

38-序列对象方法

  1. from random import randint
  2. alist = list() # []
  3. list('hello') # ['h', 'e', 'l', 'l', 'o']
  4. list((10, 20, 30)) # [10, 20, 30] 元组转列表
  5. astr = str() # ''
  6. str(10) # '10'
  7. str(['h', 'e', 'l', 'l', 'o']) # 将列表转成字符串
  8. atuple = tuple() # ()
  9. tuple('hello') # ('h', 'e', 'l', 'l', 'o')
  10. num_list = [randint(1, 100) for i in range(10)]
  11. max(num_list)
  12. min(num_list)

39-序列对象方法2

  1. alist = [10, 'john']
  2. # list(enumerate(alist)) # [(0, 10), (1, 'john')]
  3. # a, b = 0, 10 # a->0 ->10
  4. for ind in range(len(alist)):
  5. print('%s: %s' % (ind, alist[ind]))
  6. for item in enumerate(alist):
  7. print('%s: %s' % (item[0], item[1]))
  8. for ind, val in enumerate(alist):
  9. print('%s: %s' % (ind, val))
  10. atuple = (96, 97, 40, 75, 58, 34, 69, 29, 66, 90)
  11. sorted(atuple)
  12. sorted('hello')
  13. for i in reversed(atuple):
  14. print(i, end=',')

40-字符串方法

  1. py_str = 'hello world!'
  2. py_str.capitalize()
  3. py_str.title()
  4. py_str.center(50)
  5. py_str.center(50, '#')
  6. py_str.ljust(50, '*')
  7. py_str.rjust(50, '*')
  8. py_str.count('l') # 统计l出现的次数
  9. py_str.count('lo')
  10. py_str.endswith('!') # 以!结尾吗?
  11. py_str.endswith('d!')
  12. py_str.startswith('a') # 以a开头吗?
  13. py_str.islower() # 字母都是小写的?其他字符不考虑
  14. py_str.isupper() # 字母都是大写的?其他字符不考虑
  15. 'Hao123'.isdigit() # 所有字符都是数字吗?
  16. 'Hao123'.isalnum() # 所有字符都是字母数字?
  17. ' hello\t '.strip() # 去除两端空白字符,常用
  18. ' hello\t '.lstrip()
  19. ' hello\t '.rstrip()
  20. 'how are you?'.split()
  21. 'hello.tar.gz'.split('.')
  22. '.'.join(['hello', 'tar', 'gz'])
  23. '-'.join(['hello', 'tar', 'gz'])

关于Python技术储备

学好 Python 不论是就业还是做副业赚钱都不错,但要学会 Python 还是要有一个学习规划。最后大家分享一份全套的 Python 学习资料,给那些想学习 Python 的小伙伴们一点帮助!

朋友们如果需要这份完整的资料可以微信扫描下方CSDN官方认证二维码免费领取【保证100%免费】

一、Python学习大纲

Python所有方向的技术点做的整理,形成各个领域的知识点汇总,它的用处就在于,你可以按照上面的知识点去找对应的学习资源,保证自己学得较为全面。
在这里插入图片描述

二、Python必备开发工具

在这里插入图片描述

三、入门学习视频

四、实战案例

光学理论是没用的,要学会跟着一起敲,要动手实操,才能将自己的所学运用到实际当中去,这时候可以搞点实战案例来学习。在这里插入图片描述

五、python副业兼职与全职路线

在这里插入图片描述

在这里插入图片描述

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