码迷,mamicode.com
首页 > 其他好文 > 详细

内置函数for、while循环控制

时间:2020-05-10 17:37:10      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:oda   value   vlc   机制   pci   长度   imu   iot   join   

                                内置函数(len,in,not in)
#len计算长度,可以是元组、列表,字典等
a = ‘hello,world‘
res = len(a)
print(res)
11
 
#in:在....里面,not in:不在....里面(输出结果为布尔形式)
keys、values
info = {
     ‘name‘:‘aaa‘,
     ‘age‘: ‘18‘,
‘hight‘:‘188‘
}
print(‘12‘ not in info.values())
True
引用计数和垃圾回收机制
当一个程序执行完毕后,回收变量所占用的内存
当引用计数变为0时,回收变量所占用的内存
 
 
 
 
 
 

内置函数for、while循环控制

标签:oda   value   vlc   机制   pci   长度   imu   iot   join   

原文地址:https://www.cnblogs.com/hao6/p/12863542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!