2014年8月14日木曜日

開発環境

Head First C ―頭とからだで覚えるCの基本(David Griffiths (著)、Dawn Griffiths (著) 中田 秀基(監訳)(翻訳)、木下 哲也 (翻訳)、オライリージャパン)の2章(Cメモリとポインタ: 何を指しているの?)、自分で考えてみよう(p.61)をpythonで考えてみる。

自分で考えてみよう(p.61)

コード(BBEdit, Emacs)

sample61.py

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

def skip(msg):
    print(msg[6:])

msg_from_amy = "Don't call me"
skip(msg_from_amy)

入出力結果(Terminal, IPython)

$ ./sample61.py
call me
$

0 コメント:

コメントを投稿