想求助一道python题
1个回答
展开全部
theStr = input('please input the letter:F\n') #请输入大写F
theCode = ord(theStr)
i = 65
while i <= theCode:
for j in range(theCode-i,0,-1):
print(" ",end='')
#输出相应的空格
for i_temp in range(65, i):
print(chr(i_temp), end='')
#正向输出字母
for i_temp_temp in range(i, 64, -1):
print(chr(i_temp_temp), end='')
#反向补齐输出字母
i+=1
print("\n")
#如果成功,请再输入小写f试试,效果更好!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询