1. 程式人生 > >第一天python學習內容

第一天python學習內容

開頭 高級 python3 div col nic 語句 解釋 inpu

編程語言

  高級  字節碼

  低級  機器碼

python語言

  javapython

  cpython  常用

  pypy 最快

python程序:

  1

    終端:C:\python36\python.exe c:\1.py

    解釋器:

  2  文件型

    #/usr/bin/u/ubv/a python   Linux

    python 1.py

    ./1.py  加權限

  3  編碼

    #/usr/bin/u/ubv/a python

    #-*- coding:utf-8 -*-    2.7要用

    補充:ASCII碼值  8位只能表示英文字母

         Unicode  最少十六位 全球字母都能表示 浪費空間 萬國碼

          utf
-8  以盡量少的位數表示 中文用3個字節表示        GBK 主要針對中文 兩個字節表示   4   print()   5  inp=input(‘’) input接收到的所有類型均是字符串     PS:new_inp= int(inp)   6   變量名      字母 數字 下劃線     不能以數字開頭、不能使用關鍵字、不要使用內置的詞 例:sum   7  if 條件語句     1 基本     2嵌套     3if elif else 縮進 必須一樣   8 while 循環     while else    count =0
while count<10: if count ==7: count=count+1 break #終止所有循環 直接回去 print(count)   count=count+1 #打印0-6    count=0 while count<10: count=count+1 if count==7: pass else: print(count) count =0 while count<10: count=count+1 if count==7:
continue print(count)   break 終止之後所有的循環   continue 終止現有的單個循環          

第一天python學習內容