Changes between Version 14 and Version 15 of Python


Ignore:
Timestamp:
08/09/08 00:27:32 (16 years ago)
Author:
atzm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Python

    v14 v15  
    33 
    44メモ.主に日記からの転載. 
     5 
     6== 行番号を得る == 
     7[wiki:Perl Perl] で言うところの {{{__LINE__}}} みたいなもの. 
     8スタックフレームを参照すれば良い. 
     9{{{ 
     10#!python 
     11import inspect 
     12 
     13def lineno(): 
     14    return inspect.currentframe().f_back.f_lineno 
     15 
     16if __name__ == '__main__': 
     17    print lineno() 
     18}}} 
    519 
    620== 可変長引数 ==