sys.exit()を使うようです1.サンプル
import sys
sys.exit(1)
2.実行結果
$ python sample1.py
$ echo $?
1
PR
こんな感じですimport csv
with open('test.csv', 'w', newline="") as f:
writer = csv.writer(f)
#ヘッダー
writer.writerow(['列1', '列2', '列3'])
#データ
writer.writerow([0, 1, 2])
writer.writerow([3, 4, 5])
newline=""がないと、1行改行だけの列が入りました
こんな感じでしょうか。
file = open('myfile.txt', 'w')
file.write('Hello\n')
file.close()
file = open('myfile.txt', 'r')
print file.read()
ファイルを書いて、それを読んでいます。
1.文法
・__name__ 属性は、あらゆるモジュールが持つ属性
・モジュールファイルが、プログラムのトップレベルとして呼ばれた場合は、プログラム起動時 に、'__main__'が入る
・モジュールファイルがインポートされる場合には、モジュール名が入る
・そのため、def func1(x,y):
return x+ y
if __name__ == '__main__' :
print(func1(2,3))
という書き方をしたら、
トップレベルとして実行されたら、func1(2,3)が呼び出される
windwos10です。
Visual Studio code と Python は、インストール済みとします。<h3>1.拡張機能のインストール</h3>Visual Studio codeで
Python extention Pack
を拡張機能で検索して、インストールしました<h3>2.設定</h3>Visual Studio codeの
[ファイル]-[ユーザ設定]-[設定]
メニュで
[拡張機能]-[Python]を選択
以下を設定しました
(1) Python Path
コマンドプロンプトで
>where python
で出力された
C:\Users\・・・\Anaconda3\python.exe
を指定しました。<h3>3.確認</h3>次のようなコードを、Visual Studio codeで作成し、保存します。
(sample1.py)
<blockquote>print("hello world")</blockquote>
Visual Studio codeの
[実行]-[デバグの開始]
を選択すると
[デバグの構成の選択]が上がってくるので
Python File
を選択しました。
Visual Studio codeのターミナルに
hello world
が表示されました。