2018年12月21日金曜日

開発環境

入門 Python 3 (Bill Lubanovic (著)、斎藤 康毅 (監修)、長尾 高弘 (翻訳)、オライリージャパン)の10章(システム)、10.5(復習問題)10-4、5.を取り組んでみる。

コード(Emacs)

Python 3

#!/usr/bin/env python3
import os

for i, dir in enumerate(['.', '..'], 4):
    print(f'({i})')
    print(os.listdir(dir))

入出力結果(Terminal, cmd(コマンドプロンプト), Jupyter(IPython))

$ ./sample4.py
(4)
['draft2.html', 'draft3.html', 'draft4.html', 'today.txt', 'sample1.py', 'sample4.py', 'sample3.py', 'sample2.py', 'draft1.html', 'output.txt']
(5)
['ch9', 'ch7', 'ch1', 'ch6', 'ch8', '.DS_Store', 'ch3', 'ch4', 'ch5', 'ch2', 'ch10']
$

0 コメント:

コメントを投稿