win+R --> 執行 --> powershell 或 cmd
#檢查是否已安裝python
PS C:\Users\kk> python --version
Python 3.10.0
#安裝 vscode for python Extensions 套件
vscode --> Extensions --> Search for python --> python install
#目前路徑
PS C:\Users\kk> pwd
Path
----
C:\Users\kk
#變更路徑到c:\
PS C:\Users\kk> cd c:\
#列出
PS C:\> dir
目錄: C:\
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2021/5/19 上午 08:59 Ebook
d----- 2021/1/5 上午 07:46 idapi
d----- 2021/11/15 上午 07:52 Intel
d----- 2021/1/5 上午 07:48 Keyin2006.csf
d----- 2019/12/7 下午 05:14 PerfLogs
d-r--- 2021/4/6 下午 12:25 Program Files
d-r--- 2021/10/14 上午 10:30 Program Files (x86)
d----- 2021/11/15 下午 02:00 pyhton
d----- 2021/11/15 下午 02:04 python
d-r--- 2020/12/10 上午 11:32 Users
d----- 2021/11/12 上午 07:37 Windows
-a---- 2020/12/10 上午 11:59 0 Recovery.txt
-a---- 2021/11/15 上午 08:17 2409280 UkLog.dat
#新建立目錄
PS C:\> md python
目錄: C:\
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2021/11/15 下午 02:10 python
PS C:\> dir
目錄: C:\
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 2021/5/19 上午 08:59 Ebook
d----- 2021/1/5 上午 07:46 idapi
d----- 2021/11/15 上午 07:52 Intel
d----- 2021/1/5 上午 07:48 Keyin2006.csf
d----- 2019/12/7 下午 05:14 PerfLogs
d-r--- 2021/4/6 下午 12:25 Program Files
d-r--- 2021/10/14 上午 10:30 Program Files (x86)
d----- 2021/11/15 下午 02:10 python
d-r--- 2020/12/10 上午 11:32 Users
d----- 2021/11/12 上午 07:37 Windows
-a---- 2020/12/10 上午 11:59 0 Recovery.txt
-a---- 2021/11/15 上午 08:17 2409280 UkLog.dat
#到特定目錄下叫出vscode
PS C:\> cd python
PS C:\python> code .
cscode --> NewFile --> 檔案名稱 --> code:
def myAdd(x,y):
return x+y
x=int(input("x="))
y=int(input("y="))
print(myAdd(x,y))
--> FileSave --> RunCode
PS C:\python> python -u "c:\python\01.py"
x=3
y=6
9
PS C:\python>
OR
PS C:\python> python 01.py
x=5
y=7
12
沒有留言:
張貼留言