《Python程式設計從入門到實踐》學習筆記

2021-08-07 21:00:15 字數 694 閱讀 3825

一、變數的命名和使用

附 python關鍵字和內建函式

關鍵字:

+—————————————————————–+

false | class | finally | is | return | none | continue

for | lambda | try | true | def | nonlocal | while

and | del | global | not | with | as | elif | if | or | yield

assert | else | import | pass | break | except | in | raise

+—————————————————————–+

二、字串方法

常用函式,假設有字串變數name = 「ada lovelace」

name.title()以首字母大寫的方式顯示每個單詞—》得到」ada lovelace「

name.upper()將字串改為全部大寫 —》得到」ada lovelace「

name.lower()將字串改為全部小寫 —》得到」ada lovelace「

name.rstrip()只去掉字串末尾的空格

name.lstrip()只去掉字串開頭的空格

name.strip()去掉字串末尾和開頭的空格

Python 程式設計 從入門到實踐

1.官網安裝 3.環境配置 務必選中核取方塊add python to path 4.檢視 啟動python版本的命令 python 執行 print hello python world 5.終端執行x.py檔案 python x.py 7.檢視當前目錄中的所有檔案的命令 dir windows系...

Python程式設計從入門到實踐 基礎入門

python程式設計從入門到實踐 基礎入門 1 python中的變數 2 python首字母大寫使用title 方法,全部大寫upper 方法,全部小寫lower 方法 3 python中字串拼接使用 號 4 python中刪除字串的空格 刪除末尾空格的rstrip 刪除開頭空格的lstrip 刪除...

Python程式設計 從入門到實踐 1

內容總結自 python程式設計 從入門到實踐 安裝python3 安裝文字編輯器sublime text並配置python3環境 安裝sublime text tools new build system 將 untitled.sublime build 文件中的所有內容刪除,輸入以下內容 注意,...