1.列印hello world7.引入外部python檔案import outpython #引入檔案hello=outpython.hello()hello.sayhello()from outpython import hello #引入檔案的某個類hello=hello()hello.sayhello()外部檔案**:print("hello python")# 直接在.py字尾的檔案中呼叫print方法列印即可
2.變數,無需使用關鍵字宣告
a=10
b=32
c=a+b
print(c)
3.判斷語句
score=20
if score>=90:
print("優秀")
elif score>=80:
print ("良好")
elif score>=60:
print ("及格")
elif score>=30:
print ("不及格")
else:print ("很差")
4.迴圈
for i in
range(0,100):
print (i)
for i in
range(0, 100):
print ("item qwertyuiop".format(i,"aaa")) #python中的字串拼接
5.函式
def sayhello():#普通函式
print("hello world")
sayhello()
def max(a,b,c):#傳引數的函式
if(areturn b+c
else:return a+c
print(max(10,2,3))
6.物件導向:定義類
class hello:
def
__init__(self,name):#建構函式
self._name=name#在類中定義成員變數,用self._加變數名定義
def sayhello(self):
print ("hello ".format(self._name))# python中拼接字串的方法,中的n一一對應後面format方法的引數
def test(self):
print ("test")
class hi(hello):#繼承
def
__init__(self,name,desc):
hello.__init__(self,name)
self._desc=desc
def sayhi(self):
print ("hi ".format(self._name))
def pridesc(self):
print (self._desc)
h=hello("aaa")
h.sayhello()
i=hi("asd","qwe")
i.test()
i.sayhello()
i.sayhi()
i.pridesc()print (i._desc)#引用物件的成員變數
outpython.py
class hello:def sayhello(self):
print ("hello")
8.python中的注釋:以#開頭,單行
tips:②python擴充套件名為py①python檔案不支援中文,為了支援中文,需要在頭部加上:coding=utf-8
④python無需;進行**行結尾,但對縮排要求非常嚴格
python語法入門
輸出 print 你好啊 end print 中國 你好啊中國 變數 格式化列印 cars 100print f 我的車子有輛 我的車子有100輛 獲取鍵盤輸入 data input 請輸入乙個數字 print data 輸入乙個數字11 11from sys import ar script,on...
Python入門語法
python入門語法 動態變數 a 3 整數 a abc a abc 字串 a 3.0 小數 a true a false 布林型 a 3 a a a a 結果 3 3 3 3 靜態變數同語法 l 1,2,3 l 0 為1 l 1 為3 l 123 456 789 l 123 456 789 set...
Python學習入門8 新人怎麼學習Python
人生苦短 我用python 不論學習什麼語言 乙個好的基礎才是你成為高階開發人員的基石。隨著人工智慧和大資料的火熱,python成為了廣大科學家和普通大眾的學習語言。在學習python的過程中,有很多人感到迷茫,不知道自己該從什麼地方入手,今天我們就來說一些新手該如何學習python程式設計。在學習...