Python 學習筆記(第1課)

來源:互聯網
上載者:User

標籤:

從今天起,我將開啟python學習模式,並用部落格記錄學習的過程和相關知識點

1.Python下載安裝

可以在官網:https://www.python.org/downloads/ 中下載各種版本的Python (目前我安裝的版本是2.7.6)

2.文法要點記錄

 代碼注釋,使用#號符:

 >>> a=1 #value of a
>>> b=2 #value of b
>>> a+b #a add b
3
>>>

字串可以跨多個行,可以使用反斜線 :\ 或三個雙引號:"""  """或者三個單引號:‘‘‘ ‘‘‘

>>> print """hello
Jack"""
hello
Jack

>>> print "hello \
Jack"
hello Jack

注意兩者的區別:\會把多行拼接成一行,列印出來,而三引號會按照輸入的格式原樣列印出來

 兩個或兩個以上相鄰的字串會被自動拼接成一個字串

>>> a=‘a‘ ‘aa‘ ‘bb‘
>>> print a
aaabb
>>>

 同時給多個變數賦值

>>> a,b,c=1,2,‘c‘
>>> print a
1
>>> print b
2
>>> print c
c

 接收使用者輸入:raw_input 和input

raw_input:

>>> x=raw_input("please input your value:")
please input your value:10
>>> type(x)
<type ‘str‘>
>>> x=raw_input("please input your value:")
please input your value:aaa
>>> type(x)
<type ‘str‘>
>>> x=raw_input("please input your value:")
please input your value:‘aaa‘
>>> type(x)
<type ‘str‘>

 

input:

>>> x=input("please input your value:")
please input your value:10
>>> type(x)
<type ‘int‘>
>>> x=input("please input your value:")
please input your value:aaa

Traceback (most recent call last):
File "<pyshell#73>", line 1, in <module>
x=input("please input your value:")
File "<string>", line 1, in <module>
NameError: name ‘aaa‘ is not defined
>>> x=input("please input your value:")
please input your value:‘aaa‘
>>> type(x)
<type ‘str‘>
>>> x=input("please input your value:")
please input your value:1+3
>>> x
4
>>>

對比raw_input和input的區別:

raw_input--直接讀取控制台的輸入,任何類型的資料都可以接收,並都將所有輸入作為字串類型看待。 

input --能夠讀取一個合法的 python 運算式,即你輸入字串的時候必須使用引號將它括起來,否則它會引發一個 SyntaxError

 

 

Python 學習筆記(第1課)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.