我刚开始学习如何编码,我正在学习Python。我正在尝试编写一个程序,每次用户键入1时都会打印ASCII艺术,但是当我尝试运行模块时,它会在标题中给出错误。
这是我的代码: 我哪里出错了?
yORn = int(input("Type 1 to run the program, Type 2 to Exit: ")
while yORn = 1:
Name = str(input("What is your name?"))
print(" 1111111111111111111111 ")
print(" 1 1 ")
print(" 1 1 ")
print(" 1 Hello... 1 ")
print(" 1 ", Name," 1 ")
print(" 1 1 ")
print(" 1 1 ")
print(" 1111111111111111111111___ ")
print(" 11111111 | ")
print(" ------------------------- O ")
print(" 1.............._... ... 1 ")
print(" 1...................... 1 ")
print(" ------------------------- ")
yORn = int(input("Type 1 to run the program, Type 2 to Exit: ")
print ("GoodBye")
答案 0 :(得分:8)
你得到了直接答案(缺少括号),但是如果你正在做这样的事情,我会建议另一种方法,并使用多行字符串使用(使用三引号字符串)和字符串格式:
ascii_art = """
1111111111111111111111
1 1
1 1
1 Hello... 1
1{name:^20}1
1 1
1 1
1111111111111111111111___
11111111 |
------------------------- O
.............._... ... 1
1...................... 1
-------------------------
"""
print ascii_art.format(name='Kevin')
{name:^20}
使用参数name
并将其集中在20个字符^20
内对齐,以便它非常适合块(计算机显示器?)....
示例输出:
1111111111111111111111
1 1
1 1
1 Hello... 1
1 Kevin 1
1 1
1 1
1111111111111111111111___
11111111 |
------------------------- O
.............._... ... 1
1...................... 1
-------------------------
答案 1 :(得分:6)
您忘了在两个地方关闭括号:
yORn = int(input("Type 1 to run the program, Type 2 to Exit: ")) # < 2 closing parenthesis here
再次在代码的末尾。
请注意,您的while
语句也有错误; =
是作业,您的意思是==
:
while yORn == 1: