《「笨辦法」學python3》附錄 Ex 0

2021-08-31 01:23:12 字數 764 閱讀 3836

本科非計算機專業,基本零基0礎 python3 入門。

筆記會概述每個練習的核心內容,分享遇見的問題以及解決方案,歡迎各位批評指正。

zed強調命令列練習,命令列鏈結程式和計算機,使程式可以控制計算機。計算機中,shell是乙個殼,是指「提供使用者使用介面的軟體」.基本shell分成兩類:1.圖形介面:微軟作業系統. 2.命令式shell:powershell

附錄用於帶著我們熟悉powershell中的常見指令。

pwd列印當前路徑

mkdir

rmdir

建立檔案

刪除檔案

cd+資料夾名

cd ~

cd..

更改目錄

返回home

返回上級目錄

lsdir

列印當前檔案內容目錄

列印檔案內容目錄(包括子檔案)

pushd

popd

移動且儲存原始路徑

返回pushd儲存的路徑

new-item+檔案.副檔名

新建檔案

cp+被複製檔案+生成檔案/被複製位置

複製檔案

mv+資料夾名

rm+資料夾名

相當於重新命名

刪除檔案(包括子檔案))

more

cat檢視檔案內容

流檔案展示(與more輸出相同)

exit

退出powershell

安裝atom文字編輯器,和python3.7.1,過程很清晰,不詳述

《「笨辦法」學python3》Ex 3

在python3中進行數字計算和真值判斷.與c 相同,統計我的雞 print i will now count my chickens 母雞25 30 6 30 print hens 25 30 6 公雞100 25 3 4 97 print roosters 100 25 3 4 統計我的蛋 pr...

笨辦法學python3 ex6

習題6 f 格式化 f string type of people 10 x f there are types of people.binary binary do not don t y f those who know and those who 注意 f 字串的形式,我把變數放置到 此位置 ...

笨辦法學Python 3 習題6

交作業啦 ex6.py 建立了乙個名叫types of people的變數,並將其設為等於10 types of people 10 建立了乙個名叫x的變數,並將其設為f string x f there are types of people.建立了乙個名叫binary的變數,並將其設為字串 bi...