2017年2月4日土曜日

開発環境

たのしいプログラミング Pythonではじめよう!(Jason R. Briggs (著)、磯蘭水・藤永奈保子・鈴木悠 (翻訳)、オーム社)の第1部(プログラムの作り方)、第3章(文字列、リスト、タプル、そして辞書)、3.6(自分でやってみよう)を取り組んでみる。

コード(Emacs)

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

# 1. 好きなもの
games = ['game1', 'game2']
foods = ['food1', 'food2']

favorites = games + foods

# ['game1', 'game2', 'food1', 'food2']
print(favorites)

# 2. 戦士は何人?
print(25 * 3 + 40 * 2)

# 3. こんにちは!
first = 'first name'
last = 'last name'
print('Hi there, {0} {1}!'.format(first, last))

入出力結果(Terminal, IPython)

$ ./sample1.py
['game1', 'game2', 'food1', 'food2']
155
Hi there, first name last name!
$

0 コメント:

コメントを投稿