2014年9月1日月曜日

開発環境

Practical Programming: An Introduction to Computer Science Using Python 3 (Pragmatic Programmers) (Paul Gries (著)、Jennifer Campbell (著)、Jason Montojo (著)、Lynn Beighley (編集)、Pragmatic Bookshelf)のChapter 9(Repeating Code Using Loops)、9.10(Exercises) 1.を解いてみる。

9.10(Exercises) 1.

コード(BBEdit)

sample1.py

#!/usr/bin/env python3
#-*- coding: utf-8 -*-

celegans_phenotypes = ['Emb', 'Him', 'Unc', 'Lon', 'Dpy', 'Sma']

for t in celegans_phenotypes:
    print(t)

入出力結果(Terminal, IPython)

$ ./sample1.py
Emb
Him
Unc
Lon
Dpy
Sma
$

0 コメント:

コメントを投稿