文字編輯器和輸入輸出

2021-08-22 13:15:29 字數 739 閱讀 8931

文字編輯器的使用

python的互動式命令雖然很方便但是不能儲存檔案,下次想執行的時候需要重新編寫**,因此我們需要用到文字編輯器。

例項,文字編輯器編寫hello的檔案這裡我用的時notpad++的編輯器。

在文字域內輸入 print ('hello') 儲存為.py拓展名的檔案

執行該檔案:進入dos模式,進入hello.py所在的位置,輸入命令 python hello.py解釋並執行程式。

python的互動模式和直接執行.py檔案有什麼區別呢?

直接輸入python進入互動模式,相當於啟動了python直譯器,但是等待你一行一行地輸入源**,每輸入一行就執行一行。

直接執行.py檔案相當於啟動了python直譯器,然後一次性把.py檔案的源**給執行了,你是沒有機會以互動的方式輸入源**的。

資料的輸入print()和輸出 input()

print資料的輸出 print()

單個內容輸出:print (單個內容)

多個內容輸出:print (內容1,內容2)。輸出時『,』會以空格的形式輸出。

資料的輸入 input()

給a輸入值:a=intput('請輸入a的值:')

這裡注意:所有通過input()輸入的值都以str形式輸入,要想運用需要進行資料的轉換。例如a=int(input('請輸入a的值:')) a的資料型別就是int整型。

文字編輯器

include stdio.h include string.h include stdlib.h define len sizeof struct linetable struct linetable main 輸出並加入行號 display struct linetable head else ...

文字編輯器

text editer文字編輯器 data ref container tec type ref to cl gui custom container.data ref edit type ref to cl gui textedit.data text line 85 work area it t...

文字編輯器

uedit notepad mybase 筆記類工具 sublime 列模式操作很牛叉 sublime 快捷鍵 常用類操作模式 1.選擇編輯的行,ctrl l,就可以操作了。2.按住shiftr 鍵盤,滑鼠右鍵選擇欲選擇內容。ctrl l 選擇整行 按住 繼續選擇下行 ctrl kk 從游標處刪除至...