打印不出来
# -*- coding: utf-8 -*
def greet(s):
if s is None:
print ('hello word')
else:
print 'hello'+s
greet()
greet('Bart')
# -*- coding: utf-8 -*
def greet(s):
if s is None:
print ('hello word')
else:
print 'hello'+s
greet()
greet('Bart')
2018-12-26
举报