1,有》標記的是互動模式,直接運算,輸入exit(),可退出互動模式。
在互動模式的提示符>>>
下,直接輸入**,按回車,就可以立刻得到**執行結果。如:
>>> 100+200
300>>> 3*3*3
27>>> 3**3
27>>> 10/3
3.3333333333333335
%為取餘數
>>> 10%3
1>>> round(1.123)
1>>> round(1.123,2)
1.12
2、進入命令列模式,
輸入e: 回車,直接進入e盤,再輸入cd\work,進入e盤的work資料夾路徑下
c:\users\zhouqizhi>cd
c:\users\zhouqizhi
c:\users\zhouqizhi>e:
e:\>cd\work
e:\work>python hello.py.py
please enter your name:
e:\work>python hello.py.py
please enter your name: wang er gou
hello, wang er gou
----------------------------------
其中,hello.py.py**
name = input('please enter your name: ')
print('hello,', name)
在python互動式模式下,可以直接輸入**,然後執行,並立刻得到結果。
在命令列模式下,可以直接執行.py
檔案。
Gui Bash命令列模式
1 mkdir filename 2 cd dirpath 3 git init 4 git clone d x 本地 git clone git github.com fsliurujie test.git ssh協議 git clone git git協議 git clone https htt...
c 設計模式2 命令列模式
這是我在c 思考第二卷見到的例子 如下 做了一些改正 dev c 程式設計環境 include include include include include using namespace std class task class taskrunner static void run privat...
php cli模式學習 PHP命令列模式
php cli模式簡介 win下面的執行方法 假設php.exe 在d xamppphp在dos命令在可以這個執行 複製 如下 d xamppphpphp.exe d xampphtdocstest.php 就可以執行test.php這個檔案了 這裡推薦win平台下xampp整合環境,真正比wamp...