预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共30页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

运维必备Python基础入门到精通 视频课程汇总 Python是一种面向对象、解释型计算机程序设计语言,它的语法简洁而清 晰,具有丰富和强大的类库。常被昵称为胶水语言.它能够把用其他语言制作 的各种模块(尤其是C/C++)很轻松地联结在一起。我在这里给大家总汇 了不少好的Python课程,都是我平时会去学习的,希望对大家有所帮助。 讲师课程 python开发支持万台设备的分布式监控软件视频教程 Python运维系统开发2014年3月[老男孩linux高薪运维精品] Alex利用Python快速构建运维自动化系统实战[老男孩高薪必备] (李杰)利用PythonSOCKET多线程开发FTP软件[高薪必备] TriAquae快速上手教程 [老男孩高薪必备]Python高级运维编程实战精品入门进阶 使用git对python代码版本控制视频教程 贺永康 python开发者的必备工具 马哥运维必备python基础入门到精通-[国内No.1全新马哥linux系列三十] 台湾辅仁大学:PythonDjango基础讲座视频 苏勇老师Python语言基础视频教程-Web开发 Python零基础入门学习视频教程 玩转Python编程语言视频教程 Python函数中文手册 函数列表 1、取绝对值 abs(x) Returntheabsolutevalueofanumber.Theargumentmaybeaplainorlong integerorafloatingpointnumber.Iftheargumentisacomplexnumber,its magnitudeisreturned. 如果你不知道绝对值什么意思,那就要补一下小学数学了! 基本用法 2 all(iterable) ReturnTrueifallelementsoftheiterablearetrue(oriftheiterableisempty). Equivalentto: 3 any(iterable) ReturnTrueifanyelementoftheiterableistrue.Iftheiterableisempty,return False.Equivalentto: 4 basestring() Thisabstracttypeisthesuperclassforstrandunicode.Itcannotbecalledor instantiated,butitcanbeusedtotestwhetheranobjectisaninstanceofstror unicode.isinstance(obj,basestring)isequivalenttoisinstance(obj,(str,unicode)). 是字符串和字符编码的超类,是抽象类型。不能被调用或者实例化。可以用来判断实例是否 为字符串或者字符编码。 5、二进制转换 bin(x) Convertanintegernumbertoabinarystring.TheresultisavalidPython expression.IfxisnotaPythonintobject,ithastodefinean__index__()method thatreturnsaninteger. 转换成二进制表达 方法: 6、布尔类型 bool([x]) ConvertavaluetoaBoolean,usingthestandardtruthtestingprocedure.Ifxis falseoromitted,thisreturnsFalse;otherwiseitreturnsTrue.boolisalsoaclass, whichisasubclassofint.Classboolcannotbesubclassedfurther.Itsonly instancesareFalseandTrue 布尔类型的转化 用法: 7、二进制数组的转化 bytearray([source[,encoding[,errors]]]) Returnanewarrayofbytes.Thebytearraytypeisamutablesequenceofintegers intherange0<=x<256.Ithasmostoftheusualmethodsofmutable sequences,describedinMutableSequenceTypes,aswellasmostmethodsthat