博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python基础训练题2-元组,字典
阅读量:6842 次
发布时间:2019-06-26

本文共 1844 字,大约阅读时间需要 6 分钟。

1,判断值在元组中

>>> a = ( 1, 2, 3, 4, 10 )>>> 10 in aTrue>>> '10' in a False

2,修改元组中的值,由于元组不能被直接修改,可以先把他转成列表,在通过列表修改之后,赋给一个新的元组对象

>>> a = ( 10, 20, 30, 40 )>>> l = list( a )>>> l[0] = 100>>> t = tuple( l )>>> t(100, 20, 30, 40)>>> id( a )139920488716168>>> id( t )139920488447152>>> type( a )
>>> type( t )
>>>

3,向集合添加一个值,删除一个值,求交集和并集

>>> aset(['a', 'c', 'b', 'e', 'd', 'g', 'f'])>>> a.add( 'ghostwu' )>>> aset(['a', 'c', 'b', 'e', 'd', 'g', 'f', 'ghostwu'])>>> a.remove( 'g' )>>> aset(['a', 'c', 'b', 'e', 'd', 'f', 'ghostwu'])>>> b = set( "abcdlmn" )>>> a & bset(['a', 'c', 'b', 'd'])>>> a | bset(['a', 'c', 'b', 'e', 'd', 'f', 'm', 'l', 'n', 'ghostwu'])>>>

4,用字典实现一个学生成绩小系统,之后进行添加,修改,删除,排序等操作

>>> student = { 'ghostwu' : { 'name' : 'ghostwu', 'age' : 20, 'score' : { 'math' : 78, 'english' : 66, 'python' : 75 } } }>>> student{
'ghostwu': {
'age': 20, 'score': {
'python': 75, 'math': 78, 'english': 66}, 'name': 'ghostwu'}}>>> student['tom'] = { 'name' : 'tom', 'age' : 21, 'score' : { 'math' : 60, 'english' : 80, 'python' : 90 } }>>> student{
'ghostwu': {
'age': 20, 'score': {
'python': 75, 'math': 78, 'english': 66}, 'name': 'ghostwu'}, 'tom': {
'age': 21, 'score': {
'python': 90, 'math': 60, 'english': 80}, 'name': 'tom'}}>>> student['ghostwu']['score']['php'] = 90>>> student['tom']['score']['php'] = 50>>> student['ghostwu']['score']['math'] = 30>>> del student['ghostwu']['age']>>> score1 = student['ghostwu']['score'].values()>>> score1[75, 90, 30, 66]>>> score1.sort()>>> score1[30, 66, 75, 90]>>> student.pop( 'address', 'shenzhen' )'shenzhen'>>> student{
'ghostwu': {
'score': {
'python': 75, 'php': 90, 'math': 30, 'english': 66}, 'name': 'ghostwu'}, 'tom': {
'age': 21, 'score': {
'python': 90, 'php': 50, 'math': 60, 'english': 80}, 'name': 'tom'}}>>>

 

转载地址:http://vbzul.baihongyu.com/

你可能感兴趣的文章
Android开机广播android.intent.action.BOOT_COMPLETED
查看>>
Linux服务器信息收集
查看>>
怎样在 CentOS 7.0 上安装和配置 VNC 服务器
查看>>
学习 SQL 语句 - Select(2): 指定表中的字段
查看>>
iptraf
查看>>
Tomcat JDBC pool源码部析
查看>>
a 伪类在IE6下优先级大于class
查看>>
iOS 导出 ipa 包时 四个选项的意义
查看>>
我的友情链接
查看>>
android 简单解决询问权限问题和apk打包过大问题
查看>>
Android Accessibility学习笔记
查看>>
QEMU用户模式学习笔记
查看>>
两种方法解决mysql主从不同步
查看>>
Lvs+Keepalived+MySQL Cluster架设高可用负载均衡Mysql集群
查看>>
Spring高级应用之注入嵌套Bean
查看>>
mini6410 uboot1.1.6 MMC fat command support
查看>>
系统日志的实践应用
查看>>
基于SmartGwt的分页组件
查看>>
【oraInventory】由OUI-10035和OUI-10033错误引发的关于oraInventory目录位置的思考
查看>>
epoll和select的区别
查看>>