Python の入門を学習したら、、学習の第一段階である Python の基礎を学習し始める必要があります。次に、Python の初期段階で何を学ぶ必要があるかを見てみましょう。
1.構文#!/usr/bin/python # -*- coding: UTF-8 -*- str = 'Hello World!' print str # 输出完整字符串 print str[0] # 输出字符串中的第一个字符 print str[2:5] # 输出字符串中第三个至第五个之间的字符串 print str[2:] # 输出从第三个字符开始的字符串 print str * 2 # 输出字符串两次 print str + "TEST" # 输出连接的字符串
http://blog.csdn.net/u011955252/article/details/51273863
2.操作方法for(i=1;i<=n;++i) { for(j=1;j<=n;++j) { c[ i ][ j ]=0; //该步骤属于基本操作 执行次数:n^2 for(k=1;k<=n;++k) c[ i ][ j ]+=a[ i ][ k ]*b[ k ][ j ]; //该步骤属于基本操作 执行次数:n^3 } }
http://www.php.cn/python-tutorials -375819.html
3. 関数def square(x): return x**2 >>> square <function square at 0x031AA230> >>> dir(square) ['__call__', '__class__', '__closure__', '__code__', '__defaults__', '__delattr__', '__dict__', '__doc__', '__format__','__get__', '__getattribute__', '__globals__', '__hash__', '__init__', '__module__', '__name__', '__new__','__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__','func_closure', 'func_code', 'func_defaults', 'func_dict', 'func_doc', 'func_globals', 'func_name']
http://www.php.cn/python-tutorials-375824.html
http://www.php.cn/ python-tutorials-375825.html http://www.php.cn/python-tutorials-375827.html以上が初心者のための Python 学習への道の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。