いわゆるマスターはあなたを正しい扉に導きます、それは個人次第です あなた自身の勤勉さは非常に重要ですが、前提として、良い教師はあなたを正しい扉に導き、あなたは彼を誤らせることはできません。 Python の学習でも同様に、始めることが非常に重要です。以下に、Python の学習における私の経験を共有します。
1. 開発環境のセットアップ
http://www.php.cn/python-tutorials-157440.html
基本構文
In [42]: [(x,y) for x in range(3) for y in range(3)] Out[42]: [(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1), (2, 2)] In [43]: [[x,y] for x in range(2) for y in range(2)] Out[43]: [[0, 0], [0, 1], [1, 0], [1, 1]]
http://www.php.cn / python-tutorials-157506.html
Web 開発フレームワークの構築
import web urls = ('/hello', 'hello', ) class hello(object): def GET(self): return 'hello world' if __name__ == "__main__": app = web.application(urls, globals()) app.run()
http://www.php.cn/python-tutorials-375814.html
以上がPython を始めるプロセスを共有するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。