python基本数据类型练习题
作者:爱吃苹果的派大星?? 时间:2022-07-21 14:26:26
题目[1]:格式输出练习。在交互式状态下完成以下练习。
运行结果截图:
题目[2]:格式输出练习。在.py的文件中完成以下练习
代码:
num = 100
print('%d to hex is %x' % (num,num))
print('%d to hex is %X' % (num,num))
print('%d to hex is %#x' % (num,num))
print('%d to hex is %#X' % (num,num))
from math import pi
print('value of Pi is: %.4f' % pi)
students = [{'name':'zhangsan','age':20},
{'name': 'lisi', 'age': 19},
{'name': 'wangwu', 'age': 19}]
print('name: %10s, age: %10d' % (students[0]['name'],students[0]['age']))
print('name: %-10s, age: %-10d' % (students[1]['name'],students[1]['age']))
print('name: %10s, age: %10d' % (students[2]['name'],students[2]['age']))
for student in students:
print('%(name)s is %(age)d years old' % student)
运行:
题目[3]:凯撒加密:
原理功能:
通过把字母移动一定的位数来实现加解密
明文中的所有字母从字母表向后(或向前)按照一个固定步长进行偏移后被替换成密文。
例如:当步长为3时,A被替换成D,B被替换成E,依此类推,X替换成A。
代码:
import string
#ascii_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
#ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
#ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
def kaisa(s, k):
lower = string.ascii_lowercase
upper = string.ascii_uppercase
before = string.ascii_letters
after = lower[k:] + lower[:k] + upper[k:] + upper[:k]
table = ''.maketrans(before,after)
return s.translate(table)
s = 'Python is a great programming language. I like it!'
print(kaisa(s,3))
运行:
1)用字典记录下其豆瓣评分,并输出字典;
2)现又新出了两部影片及其评分(中国机长: 7.0,银河补习班: 6.2),将此影评加入1)中的字典中,同时输出字典中所有的影片名称。
3)现找出2)中的字典中影评得分最高的影片。
代码和运行结果:
1>
films = {'肖申克的救赎':9.7, '摔跤吧!爸爸':9.0,
'阿甘正传':9.5,'我和我的祖国':8.0,
'哪吒之魔童降世':8.5, '千与千寻':9.3,
'疯狂动物城':9.2,'攀登者':6.5}
print(films)
2>
films_new = {'中国机长':7.0,'银河补习班':6.2}
films.update(films_new) #字典中元素的插入 dict.update()函数
print("所有影片名称: ", films.keys())
题目[5]:编程实现:生成2组随机6位的数字验证码,每组10000个,且每组内不可重复。输出这2组的验证码重复个数。
代码和运行结果:
import random
code1 = [] #存储校验码列表
code2 = []
t = 0 #标志出现重复校验码个数
dict={}
#第一组校验码
for i in range(10000):
x = ''
for j in range(6):
x = x + str(random.randint(0, 9))
code1.append(x) # 生成的数字校验码追加到列表
#第二组校验码
for i in range(10000):
x = ''
for j in range(6):
x = x + str(random.randint(0, 9))
code2.append(x) # 生成的数字校验码追加到列表
#找重复
for i in range(len(code1)):
for j in range(len(code2)): # 对code1和code2所有校验码遍历
if (code1[i] == code2[j]):
t = t+1 #如果存在相同的,则t+1
if t > 0:
dict[code1[i]] = t # 如果重复次数大于0,用t表示其个数,存储在字典
#输出所有重复的校验码及其个数
for key in dict:
print(key + ":" + str(dict[key]))
截取几张:
题目[6]:统计英文句子“Life is short, we need Python."中各字符出现的次数。
代码和运行结果:
#去空格,转化为list,然后再转化为字典
str = 'Life is short, we need Python.'
list = []
list2 = []
dict={}
i= 0
for w in str:
if w!=' ':
list.append(w)
#将str字符串的空格去掉放在list列表
for w in list:
c = list.count(w) #用count()函数返回当前字符的个数
dict[w] = c #针对字符w,用c表示其个数,存储在字典
print(dict) #输出字典
题目[7]:输入一句英文句子,输出其中最长的单词及其长度。
提示:可以使用split方法将英文句子中的单词分离出来存入列表后处理。
代码和运行结果:
test0 = 'It is better to live a beautiful life with all one''s ' \
'strength than to comfort oneself with ordinary and precious things!.'
test1 = test0.replace(',','').replace('.','') #用空格代替句子中“,”的空格和“。”
test2 = test1.split () #将英文句子中的单词分离出来存入列表
maxlen = max(len(word) for word in test2) #找到最大长度的单词长度值
C=[word for word in test2 if len(word)== maxlen] #找到最大长度的单词对应单词
print("最长的单词是:“{}” , 里面有 {} 个字母".format(C[0],maxlen))
来源:https://blog.csdn.net/TTTSEP9TH2244/article/details/122579965
标签:python,数据,类型
0
投稿
猜你喜欢
python 如何引入协程和原理分析
2022-09-06 11:26:07
CSS双线边框研究
2009-09-03 12:12:00
python+Django实现防止SQL注入的办法
2022-05-22 13:13:13
详解python读取matlab数据(.mat文件)
2021-03-04 19:29:29
Django基础CBV装饰器和中间件的应用示例
2023-09-30 06:17:07
python实现监听键盘
2023-12-01 19:16:17
Python实现的百度站长自动URL提交小工具
2023-08-24 10:36:31
随滚动条移动的DIV层js代码
2007-10-10 12:51:00
Python机器学习pytorch交叉熵损失函数的深刻理解
2021-12-11 06:09:40
数据库名词解释
2008-09-12 17:28:00
如何把小写数字转换成英文?
2009-11-06 13:59:00
python推导式的使用方法实例
2021-03-13 09:38:25
CSS缩写可以有效的缩小CSS文件的体积
2009-01-13 18:06:00
PHP把空格、换行符、中文逗号等替换成英文逗号的正则表达式
2024-04-10 10:56:49
python MNIST手写识别数据调用API的方法
2021-05-13 19:20:45
Python利用PyPDF2快速拆分PDF文档
2021-11-06 09:39:23
Python中xml和json格式相互转换操作示例
2023-04-26 18:02:39
Python面向对象程序设计类变量与成员变量、类方法与成员方法用法分析
2022-08-11 15:43:43
MySQL的常用命令集锦
2024-01-16 00:40:44
如何利用C#通过sql语句操作Sqlserver数据库教程
2024-01-12 19:24:00