You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
340 B
Python
50 lines
340 B
Python
#!python
|
|
# coding : utf-8
|
|
|
|
|
|
|
|
import sys
|
|
|
|
"cc", {}
|
|
|
|
def f1(a, b= None, c=[]):
|
|
|
|
|
|
x = ""
|
|
print(
|
|
a,
|
|
|
|
b,
|
|
"""arg1""",
|
|
"""arg2""",
|
|
c )
|
|
|
|
'foo' > sys.stderr
|
|
|
|
|
|
sys.stdout;lambda: "justastring"
|
|
|
|
1j
|
|
|
|
def f2():
|
|
|
|
|
|
pass
|
|
class c:
|
|
|
|
|
|
|
|
|
|
f='justastring'
|
|
|
|
|
|
@f1
|
|
class c2(object):
|
|
|
|
def __init__(self):
|
|
|
|
def inner(): pass
|
|
d = {'a':0}
|
|
for x in '':
|
|
|