2014年9月7日日曜日

開発環境

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

その他参考書籍

Test Your Knowledge: Quiz 2.

  1. EOL(End of line)
  2. semicolon(;)

コード(BBEdit)

sample2.py

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

# end of line
print('EOL')

# semicolon and end of line
print('first');print('second')

入出力結果(Terminal, IPython)

$ ./sample2.py
EOL
first
second
$

0 コメント:

コメントを投稿