python基礎語法小彙總
test.py
# coding utf-8
#1. 列印常量
print("1. 列印常量")
print("hello python")
#2. 定義變數
print("2. 定義變數")
a = 10
b = 20
c=a+b
print("c = ".format(c))
#3. 條件判斷
print("3. 條件判斷")
score = 65
if score>=80 :
print("good")
elif score>=60 :
print("及格")
print ("馬馬虎虎")
elif score>=40 :
print("not good")
else :
print("bad")
#4. 迴圈
print("4. 條件判斷")
for i in range(0,5):
print(i)
#5. 定義函式
print("5. 定義函式")
def hello():
print("hello wlh")
hello()
#6.物件導向
print("6. 物件導向 class")
class test :
def hi() :
print("print from test hi()")
hello()
test.hi()
#7.引入python檔案
print("7.引入python檔案")
import other
class1 = other.otherclass()
class1.display()
other.py
#另乙個檔案
class otherclass:
def display(self):
print("open the other file")
#otherclass.display()
輸出結果:
1. 列印常量
hello python
2. 定義變數
c = 30
3. 條件判斷
及格馬馬虎虎
4. 條件判斷01
2345. 定義函式
hello wlh
6. 物件導向 class
print from test hi()
hello wlh
7.引入python檔案
open the other file
Python基礎 Python語法基礎
關鍵字是python語言的關鍵組成部分,不可隨便作為其他物件的識別符號 andas assert break class continue defdel elif else except exec finally forfrom global ifimport inis lambda notor p...
python初級語法 python語法基礎
寫在最前頭 python 程式對大小寫是敏感的!1 資料型別 1 整數 可以處理任意大小的正負整數 2 浮點數 浮點數運算可能會引入四捨五入的誤差 3 字串 可以是單引號or雙引號括起來的任意文字,但是不包括單引號or雙引號本身。ps 如果字串本身裡含有單引號or雙引號,怎麼辦呢?嘻嘻 可以使用轉義...
python初級語法 Python基礎語法
第一章格式規範 一 標頭檔案 1.注釋行 usr bin python3 coding utf 8 2.匯入模組行 匯入整個模組,格式 import module 匯入模組中全部函式,格式為 from module import 二 識別符號 首字元必須是字母或下劃線。識別符號對大小寫敏感。三 保留...