2014年9月6日土曜日

開発環境

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

その他参考書籍

Test Your Knowledge: Quiz 1.

  1. semicolon(;)
  2. parentheses(())
  3. braces({})

コード(BBEdit)

sample1.py

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

# a C-like language
# if (...) {
#     ...;
#     ...;
# }

# in Python
if True:
    print('Block')
    print('Hello, World!')

入出力結果(Terminal, IPython)

$ ./sample1.py
Block
Hello, World!
$

0 コメント:

コメントを投稿