电脑上安装了百度云,普通操作无法删除,网上找了个方法,用注册表删除,麻烦归麻烦,效果却是非常好的。
删除百度云管家方法:
设置无效时,通过注册表编辑器删除该图标项
并在运行里键入:regedit,点击确定,来打开注册表编辑器
打开注册表编辑器之后,根据以下路径展开找到指定的注册表项:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer
\NameSpace
在NameSpace下,点击里面的子项,找到名为
的项,并查看右侧REG_SZ的值是否为”百度云管家“,是,则可在该项中右键打开菜单,选择删除,
删除结束后,重新打开我的电脑(此电脑),可查看到,此时”百度云管家“的图标已经消失了!
学习新的数组类型
Tuples 元组
Ordered collections of arbitrary objects can enbed any kind of object
Accessed by offset
Of the category "immutable sequence"
Fixed-length,heterogeneous,and arbitrarily nestable
Arrays of object references
A list inside a tuple,for instance,an be changed as usual:
>>> T=(1,[2,3],4)
>>> T[1][0]='spam'
(1, ['spam', 3], 4)
tuple 值是固定的,本身不能修改,但如果里面包含了可修改的数组(list)则可修改部分能够修改
lists are the tool of choice for ordered collections that might need to change;tuples
can handle the other cases of fixed associations.
Files
File iterators are best for reading lines
Content is strings,not objects
close is usually optional
Files are buffered and seekable
eval,a built-in function that treats a string as a piece of excutable program code
(technically,a string containing a Python expression)
领取专属 10元无门槛券
私享最新 技术干货