【问题描述】
要求:输入用户姓名,输出用户名字的首字母后面加上最多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)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)