2014年9月11日木曜日

開発環境

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

その他参考書籍

Test Your Knowledge: Quiz 5.

コード(BBEdit)

sample5.py

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

# multiple lines
if True:
    print('Hello, World!')

# a single line (use semicolon)
if True: print('Hello, World!')

入出力結果(Terminal, IPython)

$ ./sample5.py
Hello, World!
Hello, World!
$

0 コメント:

コメントを投稿