欢迎来到天天文库
浏览记录
ID:52238841
大小:654.07 KB
页数:29页
时间:2020-03-25
《python 编程之初出茅庐.pdf》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、python编程之初出茅庐raymond2014-04大纲派森你好高,高家庄的高!初入茅庐闭关苦练初出茅庐武功秘籍派森你好历史特点谁在用?应用范围派森你好-历史什么是pythonPython是一种语法简洁优美的,面向对象的,内置高级数据结构,支持模块和包,支持多种平台,可扩展的解释型通用编程语言。python之父Python的创始人为GuidovanRossum。1989年圣诞节期间,在阿姆斯特丹,Guido为了打发圣诞节的无趣,决心开发一个新的脚本解释程序,做为ABC语言的一种继
2、承。之所以选中Python作为程序的名字,是因为他是一个Monty大蟒蛇飞行马戏团的爱好者。派森你好-特点易学跨平台胶水–cython–Jython–Ironpython–pypy有趣语法–a,b=b,a–'s'*3->'sss'派森你好--谁在用?GoogleBaiduTencentAlibabaNASARedHat。。。派森你好—应用范围网站开发-djangoweb.py测试–自动化测试,自动化部署、运维脚本seluniumrobotframeworkpyunitsafeto
3、ast数据挖掘-ipython、matplotlib、numpy、scipy网络开发–rpycxmlrpc高,高家庄的高!-1c++版本文件读取例子#includepython版本#include#includeprintlen(open("a.py").readlines())usingnamespacestd;intCountLines(char*filename){ifstreamReadFile;intn=0;stringtemp;Rea
4、dFile.open(filename,ios::in);//ios::in表示以只读的方式读取文件while(getline(ReadFile,temp)){优势:n++;}1、1:19ReadFile.close();2、无需编译,即写即用returnn;}intmain(){cout<<"comn.txt的行数为:"<5、a.b初入茅庐-1安装–从http://www.python.org/download/下载合适平台的版本,推荐2.7–linux:uncompress,configure,make&&makeinstall–添加python安装路径的bin目录到系统环境变量path中helloworld–交互运行:python>>>print'helloworld'–脚本运行:pythonhello.py#!/usr/bin/pythonprint“hello,world!”IDE–Windows:idle,ec6、lipse,netbean,ultraedit–Linux:vimemcas初入茅庐-2基本语法–以冒号(:)为段落的开始–不必使用分号(;)为段落结尾,段落采用缩进表示,同一段落缩进相同推荐用空格缩进,不推荐tab作为缩进–井字号(#)是注释符3大利器–dir–help–type闭关苦练基本数据类型:number,str容器类型:list,tuple,dict变量控制流函数标准库闭关苦练-基本数据类型-1number–boolTrueFalse–int120-1298701230X1A7、2–float12.031E1-1.54E-21–long10232323322394L–complex1+3j–c-styleshifting&masking1<<16,x&0xff,x8、1,~x,x^y闭关苦练-基本数据类型-2str–不可变–"hello"+"world""helloworld"#concatenation–'hello'*3"hellohellohello"#repetition–"hello"[0]"h"#indexing–"hello"[-1]"o"#(end)–"hello9、"[::-1]"olleh"#反转–"hello"[1:4]"ell"#slicing–len("hello")5#size–"hello"<"jello"1#comparison–"e"in"hello"1#search–"escapes:etc, 33etc,ifetc"–'singlequotes'"""triplequotes"""r"rawstrings"–"The%sis%d"%('abc',12)Thea
5、a.b初入茅庐-1安装–从http://www.python.org/download/下载合适平台的版本,推荐2.7–linux:uncompress,configure,make&&makeinstall–添加python安装路径的bin目录到系统环境变量path中helloworld–交互运行:python>>>print'helloworld'–脚本运行:pythonhello.py#!/usr/bin/pythonprint“hello,world!”IDE–Windows:idle,ec
6、lipse,netbean,ultraedit–Linux:vimemcas初入茅庐-2基本语法–以冒号(:)为段落的开始–不必使用分号(;)为段落结尾,段落采用缩进表示,同一段落缩进相同推荐用空格缩进,不推荐tab作为缩进–井字号(#)是注释符3大利器–dir–help–type闭关苦练基本数据类型:number,str容器类型:list,tuple,dict变量控制流函数标准库闭关苦练-基本数据类型-1number–boolTrueFalse–int120-1298701230X1A
7、2–float12.031E1-1.54E-21–long10232323322394L–complex1+3j–c-styleshifting&masking1<<16,x&0xff,x
8、1,~x,x^y闭关苦练-基本数据类型-2str–不可变–"hello"+"world""helloworld"#concatenation–'hello'*3"hellohellohello"#repetition–"hello"[0]"h"#indexing–"hello"[-1]"o"#(end)–"hello
9、"[::-1]"olleh"#反转–"hello"[1:4]"ell"#slicing–len("hello")5#size–"hello"<"jello"1#comparison–"e"in"hello"1#search–"escapes:etc, 33etc,ifetc"–'singlequotes'"""triplequotes"""r"rawstrings"–"The%sis%d"%('abc',12)Thea
此文档下载收益归作者所有