G关于python3基础代码的问题,type error:must be str, not int
G关于python3基础代码的问题,typeerror:mustbestr,notint题目要求输出的结果是上面那样,用户输入一个名字,取第一个单词的第一个字母+第二个单...
G关于python3基础代码的问题,type error:must be str, not int题目要求输出的结果是上面那样,用户输入一个名字,取第一个单词的第一个字母+第二个单词的前三个字母+0到1000随机数(必须是三位),都小写。
下面是我写的代码,运行后有type error:must be str, not int. 而且目前也不能保证随机出来的数字是三位。 求大神帮我改改,刚刚开始学python3 展开
下面是我写的代码,运行后有type error:must be str, not int. 而且目前也不能保证随机出来的数字是三位。 求大神帮我改改,刚刚开始学python3 展开
展开全部
import random
name = input("Please enter your name:")
name = name.strip()
first_name, last_name = name.split()
index = str(random.randint(0, 999))
user_name = first_name[0].lower() + last_name[0:3].lower() + index.zfill(3)
print('Your username is', user_name)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询