學習python簡單語法

2021-08-18 19:51:11 字數 898 閱讀 4932

學習示例

#選中行,按l顯示行號

number = 10

number += 10

print(number)

import math

#乘方math.pow(3,10)

#乘方 另一種寫法

3 ** 10

#字串拼接

str = "st"+"ring"

print(str)

#字串乘法運算

print(str*3)#輸出stringstringstring

#交換變數

a = 10

b = 20

a, b = b, a

#輸出格式

print("a is {},b is {}".format(a,b))

#字串不可變型別的變數

line = "ni hao"

#返回字串長度

len(line)

#返回身份識別符,可理解為記憶體位址

id(line)

#字串擷取

line = "hello word"

line[:5]

#每隔乙個字元取一次

step = line[0:10:2]

#翻轉字元

fanzhuan = line[::-1]

print(fanzhuan)

#獲取單字元

line[0]

#函式用法描述(加乙個問號)---首字母大寫,其餘字母小寫

line.capitalize?

line.capitalize()

Python簡單語法

什麼?不是 if 和 else 才是原配嗎?no,你可能不知道,else 是個腳踩兩隻船的傢伙,for 和 else 也是一對,而且是合法的。十大裝b語法,for else 絕對算得上南無灣!不信,請看 for i in 1,2,3,4 print i else print i,我是else 1 2...

Python簡單入門語法python基礎入門知識

1.列印hello world 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...

Python語法簡單整理(二)

my tuple 張三 18 70 元組 可以儲存不同型別元素 使用小括號 print my tuple 2 輸出 70 print my tuple.index 18 輸出 1 print my tuple.count 70 輸出 1 single tuple 1 5 print type sin...