文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python 学习笔记 3 -- 数据

2023-01-31 06:16

关注

当你创建一个对象并给它赋一个变量的时候,这个变量仅仅 引用 那个对象,而不是表示这个对象本身!也就是说,变量名指向你计算机中存储那个对象的内存。这被称作名称到对象的绑定。
eg.

  1. # -*- coding: utf-8 -*-  

  2. shoplist = ['apple', 'mango', 'carrot', 'banana']  

  3. print "we copy the shoplist to mylist directly \"with mylist = shoplist\" "  

  4. mylist = shoplist                         # 直接使用等于,此时mylist与shoplist只是指向一个对象的两个名字  

  5. print "\tNow the shoplist is : %s"% shoplist  

  6. print "\tNow the mylist is : %s"% mylist  

  7. print "delete the first item of shoplist"  

  8. del shoplist[0]                           # 此时删除shoplist 或者mylist 中的元素效果是一样的,都会对那个列表对象直接进行操作  

  9. print "\tNow the shoplist is : %s"% shoplist  

  10. print "\tNow the mylist is : %s"% mylist  

  11.   

  12. print "\nThis time we use slice to cope the shoplist \"with mylist = shoplist[:]\" "  

  13. mylist = shoplist[:]                      # 使用一个完整的切片复制,此时mylist只是与shoplist有一样的内容的两个对象!  

  14. print "delete the first item of mylist"  

  15. del mylist[0]                             # 此时删除mylist中的元素不会对shoplist中的元素造成影响!  

  16. print "\tNow the shoplist is : %s"% shoplist  

  17. print "\tNow the mylist is : %s"% mylist  

运行的结果如下:


  1. long@zhouyl:~/python_test$ python cite.py   

  2. we copy the shoplist to mylist directly "with mylist = shoplist"   

  3.     Now the shoplist is : ['apple', 'mango', 'carrot', 'banana']  

  4.     Now the mylist is : ['apple', 'mango', 'carrot', 'banana']  

  5. delete the first item of shoplist  

  6.     Now the shoplist is : ['mango', 'carrot', 'banana']  

  7.     Now the mylist is : ['mango', 'carrot', 'banana']  

  8.   

  9. This time we use slice to cope the shoplist "with mylist = shoplist[:]"   

  10. delete the first item of mylist  

  11.     Now the shoplist is : ['mango', 'carrot', 'banana']  

  12.     Now the mylist is : ['carrot', 'banana']  


 

字符串也是对象,同样具有方法。这些方法可以完成包括检验一部分字符串和去除空格在内的各种工作。

eg.


  1. # -*- coding: utf-8 -*-  

  2. name = 'longerzone'                                # 先定义一个字符串  

  3. if name.startswith('lon'):                         # startwith 用来测试字符串是否以给定字符串开始。  

  4.     print 'Yes, the string starts with "lon"'  

  5. if 'z' in name:                                    # in操作符用来检验一个给定字符串是否为另一个字符串的一部分  

  6.     print 'Yes, it contains the string "z"'  

  7. if name.find('zon') != -1:                         # find方法用来找出给定字符串在另一个字符串中的位置,或者返回-1以表示找不到子字符串。  

  8.     print 'Yes, it contains the string "zon"'  

  9.   

  10. delimiter = '_*_'  

  11. mylist = ['Brazil', 'Russia', 'India', 'China']  

  12. print delimiter.join(mylist)                       # str类也有以一个作为分隔符的字符串join序列的项目的整洁的方法,它返回一个生成的大字符串。  

这里的运行结果如下:

  1. <span style="font-size:18px;">long@zhouyl:~/python_test$ python string.py  

  2. Yes, the string starts with "lon"  

  3. Yes, it contains the string "z"  

  4. Yes, it contains the string "zon"  

  5. Brazil_*_Russia_*_India_*_China  

  6. </span>  


注:本文主要以例子的形式介绍了几种python的数据结构,只能作为简单了解,想跟熟悉使用还需您自己好好练习,多阅读好代码!


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯