python入門

私がこう理解したというレベルのお話です。用語等不適切な点があるかもしれません。

What's new - step 10 CGI

menu

step 1 変数
計算や、変数で数字や文字を扱います。printやinputもちょっと。
step 2 配列
配列(リスト)、タプル、マップ(連想配列)です。
step 3 スライス
文字や配列の選択です。append,insert,del
step 4 メソッド
リスト関係のメソッドです。len,reverse,sort,count,remove,index
step 5 for
繰り返し for です。
step 6 while
繰り返し while,break,continueです。
step 7 if
条件分岐、判断 ifです。if 〜elif〜else。forのcontinue,breakも。pass。
step 8 def
関数定義です。def〜return
step 9 import from
モジュールです。import, from 〜 import *
step 10 CGI
CGIです。
memo
その他いろいろ。

link

Python Language Website
本家(英語)です。
Python Japan User's Group
日本のPythonサイトです。
Python
Pythonのtutorialの訳があります。
Python Tutorial 和訳
Python Tutorialの和訳です。
Python Home
ハンディマニュアル。簡潔にまとめてます。
Python基本メモ
まとめています。
Python Reference Manual
途中まで訳してあります(後は英語)。詳しいです。

管理人:人泣礼(hitonaki@starword.org)