Skip to content
Snippets Groups Projects
Unverified Commit 8ec170c9 authored by Lemon's avatar Lemon Committed by GitHub
Browse files

update Main Function And Cmd Input

规范起见,加入Main函数入口
加入从cmd获取主题
parent cc7a5b84
No related branches found
No related tags found
No related merge requests found
......@@ -187,15 +187,18 @@ def 另起一段():
return xx
for x in xx:
tmp = str()
while ( len(tmp) < 6000 ) :
分支 = random.randint(0,100)
if 分支 < 5:
tmp += 另起一段()
elif 分支 < 20 :
tmp += 来点名人名言()
else:
tmp += 废话[random.randint(0,len(废话)-1)]
tmp = tmp.replace("x",xx)
print(tmp)
if __name__ == "__main__":
xx = input("请输入文章主题:")
for x in xx:
tmp = str()
while ( len(tmp) < 6000 ) :
分支 = random.randint(0,100)
if 分支 < 5:
tmp += 另起一段()
elif 分支 < 20 :
tmp += 来点名人名言()
else:
tmp += 废话[random.randint(0,len(废话)-1)]
tmp = tmp.replace("x",xx)
print(tmp)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment