代码搜索:C01
找到约 476 项符合「C01」的源代码
代码结果 476
www.eeworm.com/read/200552/15430866
pdf c01 多媒体技术概要.pdf
www.eeworm.com/read/100078/15886009
h commx.h
void
commxForkExec(const char *cmd, char c10, char c01);
www.eeworm.com/read/465716/7052478
py list.py
#: c01:list.py
list = [ 1, 3, 5, 7, 9, 11 ]
print list
list.append(13)
for x in list:
print x
#
output = '''
[1, 3, 5, 7, 9, 11]
1
3
5
7
9
11
13
'''
www.eeworm.com/read/118155/14885231
py list.py
#: c01:list.py
list = [ 1, 3, 5, 7, 9, 11 ]
print list
list.append(13)
for x in list:
print x
#
output = '''
[1, 3, 5, 7, 9, 11]
1
3
5
7
9
11
13
'''
www.eeworm.com/read/465716/7052473
py if.py
#: c01:if.py
response = "yes"
if response == "yes":
print "affirmative"
val = 1
print "continuing..."
#
output = '''
affirmative
continuing...
'''
www.eeworm.com/read/465716/7052483
py differentreturns.py
#: c01:differentReturns.py
def differentReturns(arg):
if arg == 1:
return "one"
if arg == "one":
return 1
print differentReturns(1)
print differentReturns("one")
#
output =
www.eeworm.com/read/118155/14885218
py if.py
#: c01:if.py
response = "yes"
if response == "yes":
print "affirmative"
val = 1
print "continuing..."
#
output = '''
affirmative
continuing...
'''
www.eeworm.com/read/118155/14885242
py differentreturns.py
#: c01:differentReturns.py
def differentReturns(arg):
if arg == 1:
return "one"
if arg == "one":
return 1
print differentReturns(1)
print differentReturns("one")
#
output =
www.eeworm.com/read/465716/7052470
py myfunction.py
#: c01:myFunction.py
def myFunction(response):
val = 0
if response == "yes":
print "affirmative"
val = 1
print "continuing..."
return val
print myFunction("no")
print myFunc
www.eeworm.com/read/118155/14885209
py myfunction.py
#: c01:myFunction.py
def myFunction(response):
val = 0
if response == "yes":
print "affirmative"
val = 1
print "continuing..."
return val
print myFunction("no")
print myFunc