20161209
Python 3 Tage Netto-Nutzung von Perl
Mit Ausnahme der Alternative zum Anhörungsdokument existiert "" nur für "pydoc", und alle anderen Kommentare sollten in "#" [^ 1] geschrieben werden.
[^ 1]: Die Quelle von pydoc
selbst ist so geschrieben ... Zumindest wünschte ich, ich könnte = begin, = end, = cut
von perl
angeben ...
foo.py
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
'''
about NAME
DESCRIPTION
'''
__author__ = 'bunzaemon'
__version__ = '1.0'
__date__ = '2016/12/09'
x = 42
print (x)
'IGNORED comment'
def foo ():
# of course ignored
'DEF: foo'
'IGNORED comment'
def bar ():
'DEF: bar <= IGNORED'
class Clas:
'CLASS: Clas'
def __init__ (self):
'CLASS DEF: __init__'
if 1:
'IGNORED comment'
y = 42
print (y)
def buz ():
'DEF: buz'
def bux ():
'IGNORED comment'
class Clas2:
'CLASS: Clas2'
if 0:
z = 42
print (z)
class Clas3:
'IGNORED comment'
--u '...'
ist nutzlos => 2.6 Serie ist Moos. [^ 2]
[^ 2]: 2.6 Serie Wenn Sie nicht darüber nachdenken müssen, sollten Sie es hinzufügen. [^ 3]: Mein zukünftiges Ich
$ python --version
Python 2.6.6
$ python ./foo.py
42
42
$ pydoc ./foo.py
Help on module foo:
NAME
foo - about NAME
FILE
/PATH/TO/foo.py
DESCRIPTION
DESCRIPTION
CLASSES
Clas
Clas2
class Clas
| CLASS: Clas
|
| Methods defined here:
|
| __init__(self)
| CLASS DEF: __init__
class Clas2
| CLASS: Clas2
FUNCTIONS
buz()
DEF: buz
foo()
DEF: foo
DATA
__author__ = 'bunzaemon'
__date__ = '2016/12/09'
__version__ = '1.0'
x = 42
y = 42
VERSION
1.0
DATE
2016/12/09
AUTHOR
bunzaemon
Recommended Posts