1、安裝pycharm,配置環境,詳情略
2、了解主要直譯器
cpython、ipython、pypy
3、變數
1)變數名要求
硬性規則:
# -*- coding:utf-8 -*-
5、注釋
#單行注釋
'''這是
多行注釋
'''
6、單引號、雙引號區別,和shell相同
7、多行字串嵌入變數
#方法1
username =
"qingfeng"
password =
"abc123"
name =
'''username:'''
+ _name +
'''password:'''
+ _password +
''''''
.format
(_name=username,_password=password)
print
(name)
#方法2
username =
"qingfeng"
password =
"abc123"
name =
'''username:%s
password:%s
'''%
(username,password)
print
(name)
8、判斷和迴圈
if
2>1:
...elif
2<1:
...else:.
..while
true:.
..else:.
..for i in
range(0
,10,1
)...
else:.
..
9、迴圈退出
break:退出當前整個迴圈
continue:跳出本輪迴圈
Python學習 學習筆記(一)
python是什麼?人們為和使用python python的缺點 如今誰在使用python 流行的p2p檔案分享系統bitjorrent是乙個python程式。eve online這款大型多人網路遊戲 massively multiplayer online game,mmog 廣泛地使用pytho...
python學習學習筆記一
1,python 是完全物件導向的語言。在python中一切都是物件,函式 模組 字串等都是物件。2,資料型別 數字,字串,列表,元組,字典 數字型 整型 浮點型 布林型 非零即真 複數型 int x float x 型別轉換 非數字型 字串 列表 元祖 字典 list 元祖 元祖轉列表 tuple...
Python學習筆記 一
python學習筆記 一 關鍵知識點 1 程式列印輸出使用print語句 2 使用print輸出字串時,字串內容不帶引號。而使用字串變數名輸出時,字串內容由引號括起來 3 在python 解析器中下劃線 表示最後乙個表示式的值 4 重定向輸出符合為 5 程式中需要輸入時,實用raw input 內建...