Crossin的编程教室

标题: 关于Py编程的一点小问题 [打印本页]

作者: ksco    时间: 2017-9-15 06:02
标题: 关于Py编程的一点小问题
代码如下:
def build_profile(first, last, **user_info):
    profile = {}
    profile['first_name'] = first
    profile['last_name'] = last
    for key, value in user_info.items():
        profile[key] = value
    return profile

user_profile = build_profile('ksco', 'hznu_',
                             location = 'Hangzhou',
                             song = 'abcd')

print(user_profile)


关于return profiles 那里不是很明白 我删掉那行代码就显示None了,还是对return 不是很明白




欢迎光临 Crossin的编程教室 (https://bbs.crossincode.com/) Powered by Discuz! X2.5