Python用户名生成

Python用户名生成,第1张

Python用户名生成

【问题描述】

要求:输入用户姓名,输出用户名字的首字母后面加上最多7位作为用户名。

举例:用户姓名为Alex Shoulson,生成的用户名为” AShoulson”;用户姓名为John Smith生成的用户名为” JSmith”。

【样例输入输出】(注意其中下划线的部分表示输入的,不带下划线的表示输出的。)

Please enter your first name:hongfei

Please enter your last name:zhu

Your username is:hzhu

【参考代码】

# 输入姓名
first = input("Please enter your first name:")
last = input("Please enter your last name:")  # 连接名字的字符
name = first[0] + last[:7]  # 输出用户名
print("Your username is:", name)

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5689570.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存