python介紹html
目前Python主要應用領域:java
l 雲計算: 雲計算最火的語言, 典型應用OpenStackpython
l WEB開發: 衆多優秀的WEB框架,衆多大型網站均爲Python開發,Youtube, Dropbox, 豆瓣。。。, 典型WEB框架有Djangoc++
l 科學運算、人工智能: 典型庫NumPy, SciPy, Matplotlib, Enthought librarys,pandasweb
l 系統運維: 運維人員必備語言shell
l 金融:量化交易,金融分析,在金融工程領域,Python不但在用,且用的最多,並且重要性逐年提升。緣由:做爲動態語言的Python,語言結構清晰簡單,庫豐富,成熟穩定,科學計算和統計分析都很牛逼,生產效率遠遠高於c,c++,java,尤爲擅長策略回測瀏覽器
l 圖形GUI: PyQT, WxPython,TkInter框架
Python在一些公司的應用: 運維
l 谷歌:Google App Engine 、code.google.com 、Google earth 、谷歌爬蟲、Google廣告等項目都在大量使用Python開發ide
l CIA: 美國中情局網站就是用Python開發的
l NASA: 美國航天局(NASA)大量使用Python進行數據分析和運算
l YouTube:世界上最大的視頻網站YouTube就是用Python開發的
l Dropbox:美國最大的在線雲存儲網站,所有用Python實現,天天網站處理10億個文件的上傳和下載
l Instagram:美國最大的圖片分享社交網站,天天超過3千萬張照片被分享,所有用python開發
l Facebook:大量的基礎庫均經過Python實現的
l Redhat: 世界上最流行的Linux發行版本中的yum包管理工具就是用python開發的
l 豆瓣: 公司幾乎全部的業務均是經過Python開發的
l 知乎: 國內最大的問答社區,經過Python開發(國外Quora)
l 春雨醫生:國內知名的在線醫療網站是用Python開發的
l 除上面以外,還有搜狐、金山、騰訊、盛大、網易、百度、阿里、淘寶 、土豆、新浪、果殼等公司都在使用Python完成各類各樣的任務。
python的發展史
l 1989年,爲了打發聖誕節假期,Guido開始寫Python語言的編譯器。Python這個名字,來自Guido所摯愛的電視劇Monty Python’s Flying Circus。他但願這個新的叫作Python的語言,能符合他的理想:創造一種C和shell之間,功能全面,易學易用,可拓展的語言。
l 1991年,第一個Python編譯器誕生。它是用C語言實現的,並可以調用C語言的庫文件。從一出生,Python已經具備了:類,函數,異常處理,包含表和詞典在內的核心數據類型,以及模塊爲基礎的拓展系統。
l Granddaddy of Python web frameworks, Zope 1 was released in 1999
l Python 1.0 - January 1994 增長了 lambda, map, filter and reduce.
l Python 2.0 - October 16, 2000,加入了內存回收機制,構成了如今Python語言框架的基礎
l Python 2.4 - November 30, 2004, 同年目前最流行的WEB框架Django 誕生
l Python 2.5 - September 19, 2006
l Python 2.6 - October 1, 2008
l Python 2.7 - July 3, 2010
l In November 2014, it was announced that Python 2.7 would be supported until 2020, and reaffirmed that there would be no 2.8 release as users were expected to move to Python 3.4+ as soon as possible
l Python 3.0 - December 3, 2008
l Python 3.1 - June 27, 2009
l Python 3.2 - February 20, 2011
l Python 3.3 - September 29, 2012
l Python 3.4 - March 16, 2014
l Python 3.5 - September 13, 2015
3.python解釋器類型&python2or3
當咱們編寫Python代碼時,咱們獲得的是一個包含Python代碼的以.py爲擴展名的文本文件。要運行代碼,就須要Python解釋器去執行.py文件。
因爲整個Python語言從規範到解釋器都是開源的,因此理論上,只要水平夠高,任何人均可以編寫Python解釋器來執行Python代碼(固然難度很大)。事實上,確實存在多種Python解釋器。
CPython
當咱們從Python官方網站下載並安裝好Python 2.7後,咱們就直接得到了一個官方版本的解釋器:CPython。這個解釋器是用C語言開發的,因此叫CPython。在命令行下運行python就是啓動CPython解釋器。
CPython是使用最廣的Python解釋器。教程的全部代碼也都在CPython下執行。
IPython
IPython是基於CPython之上的一個交互式解釋器,也就是說,IPython只是在交互方式上有所加強,可是執行Python代碼的功能和CPython是徹底同樣的。比如不少國產瀏覽器雖然外觀不一樣,但內核其實都是調用了IE。
CPython用>>>做爲提示符,而IPython用In [序號]:做爲提示符。
PyPy
PyPy是另外一個Python解釋器,它的目標是執行速度。PyPy採用JIT技術,對Python代碼進行動態編譯(注意不是解釋),因此能夠顯著提升Python代碼的執行速度。
絕大部分Python代碼均可以在PyPy下運行,可是PyPy和CPython有一些是不一樣的,這就致使相同的Python代碼在兩種解釋器下執行可能會有不一樣的結果。若是你的代碼要放到PyPy下執行,就須要瞭解PyPy和CPython的不一樣點。
Jython
Jython是運行在Java平臺上的Python解釋器,能夠直接把Python代碼編譯成Java字節碼執行。
IronPython
IronPython和Jython相似,只不過IronPython是運行在微軟.Net平臺上的Python解釋器,能夠直接把Python代碼編譯成.Net的字節碼。
python2或者python3?
4.Python安裝和hellowolrd
#!/usr/bin/env python # _*_ coding:utf-8 _*_ print("Hello world") print("Python好簡單呀,我要學好掙大錢!") |
5.變量
Variables are used to store information to be referenced and manipulated in a computer program. They also provide a way of labeling data with a descriptive name, so our programs can be understood more clearly by the reader and ourselves. It is helpful to think of variables as containers that hold information. Their sole purpose is to label and store data in memory. This data can then be used throughout your program.
變量聲明:
name="alex"
變量的命名規範:
l 變量名只能是 字母、數字或下劃線的任意組合
l 變量名的第一個字符不能是數字
l 如下關鍵字不能聲明爲變量名
['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']
命名格則有兩個:一種是駝峯式命名規則,一種是下劃線鏈接式。
oldBoy =「zs」
old_boy="zs"
推薦使用第二種。
NATION="中國" print("Your contry is " + NATION ) |
6.用戶交互和註釋
''' 用戶交互 ''' name = input("input your name:") age= input("input your age:") hometown = input("input your hometown:") print("hello ",name ,"your are " + age + "years old", "your hometown is " + hometown) |
單行註釋:#
多行註釋'''
要註釋的內容
'''
7.數字類型--數字、字符串、布爾類型
其中,type()是查看數據類型的方法。
字符串
name = "Alex" age="22" homeTown='shengdong'
msg=''' 今天我想寫一首小詩 歌頌個人同桌 他有一頭烏黑的頭髮 簡直就像炸子雞 ''' print(msg) |
字符串的拼接
布爾值:就是兩個值,一個true,一個false,主要用戶邏輯判斷。
8.格式化輸出
''' 現有一練習需求,問用戶的姓名、年齡、工做、愛好。而後打印成以下格式 ------------info of Gxw------------- name: gxw age: 22 job: IT hobbies: girl ---------------end----------------------- '''
name = input("Name:") age = input("Age:") job= input("Job:") hobbies = input("Hobbies:") msg = """ ----------info of %s------------------- name: %s age: %s job: %s hobbies: %s ----------------end--------------------- """ %(name,name,age,job,hobbies)
print(msg) |
9.運算符
10.流程控制
單分支:
name = input("Name:") age = 22; sex = input("sex:") if sex == "female" and age < 28 : print("我喜歡女生!") |
略、
ageOfWQ=28
age = int(input("Please input the Age you guessed:"))
if age > ageOfWQ: print("你猜小了!") elif age < ageOfWQ: print("你猜大了!") else: print("你猜的正好,你太厲害了!") |
grade = int(input ("Please input the grade:"))
if grade >= 90 and grade <= 100 : print("A ---- 優秀!") elif grade >= 80 and grade < 90: print("B ----良好!") elif grade >=70 and grade < 80 : print("C ---- 及格!") else: print("D-----不及格!須要重修!") |
11.while循環、死循環
猜年齡遊戲升級版,容許用戶最多猜三次!
count=0; while count <= 100: print("%d ==== loop " %count) count += 1 |
count=1; while count <= 100: # if count%2 == 0: # print("%d ==== loop " %count) if count < 50 or count >80 and count <=100: print("%d ---loop " % count) else: print(count**2) count += 1 |
死循環:
while true
12.continue和break
13.猜年齡遊戲
count = 1 oldBoyAge = 28 while count <= 3: age = int (input("Please input your guess age:")) if oldBoyAge == age: print("你太厲害了,竟然第%d次就猜對了!" %count) break else: print("你猜錯了,請從新猜!") count += 1 else: print("你的猜想次數3次已到,不能再猜了!") |
flag = 'y' oldBoyAge = 48 roundNum = 1 while flag == 'y' or flag == "Y" : count = 1 while count <= 3: age = int(input("Please input your guess age:")) if age == oldBoyAge: print("您在第%d輪第%d次猜對了!" %(roundNum,count)) flag = 'N' break else: print("你猜錯了,請從新猜吧!") count += 1 else: print("您的第%d輪猜想次數已到!" %roundNum) roundNum += 1 flag = input("是否繼續(Y/N y/n)?") |