• 大小: 0.57KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-03
  • 语言: Python
  • 标签:

资源简介


资源截图

代码片段和文件信息

#!/usr/bin/python
width = 80
title = “Welcome to Hero alliance“
len_width = len(title)
margin_width = (width - len_width - 2 )  // 2

print (‘*‘ * width)
print (‘*‘ * margin_width + ‘ ‘ + title + ‘ ‘ + ‘*‘ * margin_width)
print (‘*‘ * width)

while True:
inputa = input(“Please input your u

评论

共有 条评论