【发布时间】:2019-02-05 10:14:48
【问题描述】:
print("Hello Welcome To The Essay Generating Code")
print("")
print("First things first, you need to give your essay characters")
print("")
print("")
print("How many main characters would you like your story to have?")
number_of_characters = input("Number Of Characters:")
if number_of_characters <= "10":
print("That's way too many characters!")
else:
# rest of code
我想用else函数将用户重定向回输入字符数,我该怎么做?
【问题讨论】:
标签: python-3.x