2014年9月12日金曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅲ.(Statements and Syntax)、Chapter 10.(Introducing Python Statements)、Test Your Knowledge: Quiz 6.を解いてみる。

その他参考書籍

Test Your Knowledge: Quiz 6.

コード(BBEdit)

sample6.py

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

# if and only if a single line of code
print('a single line')
print('first'); print('second')

print('multiple lines')
print('first')
print('second')

入出力結果(Terminal, IPython)

$ ./sample6.py
a single line
first
second
multiple lines
first
second
$

0 コメント:

コメントを投稿