python學習筆記

來源:互聯網
上載者:User

標籤:python 學習

1、編碼轉換

   一般硬碟儲存為utf-8,讀入記憶體中為unicode,二者如何轉換

      a = ‘你好‘              ‘\xe4\xbd\xa0\xe5\xa5\xbd‘     <type ‘str‘>

      b = u‘你好‘             u‘\u4f60\u597d‘                <type ‘unicode‘>

      a.decode(‘utf-8‘)       u‘\u4f60\u597d‘   (utf-8格式解碼為unicode)

      b.encode(‘utf-8‘)       ‘\xe4\xbd\xa0\xe5\xa5\xbd‘  (unicode格式加密為utf-8)

    註:在python2.7版本中需要如上轉換,在指令碼中如要顯示中文,

        只要在檔案開頭加入 # _*_ coding: UTF-8 _*_ 或者 #coding=utf-8 就行了

        在python3.4以後版本,無需轉換


2、調用系統命令,並存入變數:

    1.import os

    a = os.system(‘df -Th‘)

    b = os.popen(‘df -Th‘,‘r‘) 返回一個檔案對象

  

    2.import commands

    c = commands.getoutput(‘df -Th‘)  返回一個字串


3、sys調用

    import sys

    sys.exit

    print sys.arg

    sys.path


4、匯入模板方法:

      1.import sys [as newname]

      2.from sys import argv或(*)

   建議使用第一種,第二種匯入的對象或變數會與當前的變數會衝突。


5、使用者互動:

     在python2.7版本中

        raw_input:互動輸入字串;

        input:互動輸入數字;

     在python3.4版本中只有raw_input,想要擷取數字,需要進行int轉變。

     舉例:

#_*_ coding:utf-8 _*_

info = ‘This var will be printed out ...‘
name = raw_input(‘Please input your name:‘)
age = int(raw_input(‘age:‘))  
#age = input(‘age:‘)
job = raw_input(‘Job:‘)
salary  = input(‘Salary:‘)
print type(age)

print ‘‘‘
Personal information of %s:
          Name: %s
          Age : %d
          Job : %s
        Salary: %d
--------------------------
‘‘‘ % (name,name, age,job,salary)

       

本文出自 “秋天的童話” 部落格,請務必保留此出處http://wushank.blog.51cto.com/3489095/1651859

python學習筆記

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.