我正在 Python 3.3.2 中制作这个毕达哥拉斯定理计算器。
我打印了几行,以便制作图表:
print("Welcome to the Pythagoras Theorem Calculator, powered by Python!")
print("Below are the values a, b and c. You will need to input these values after.")
print('''
| .
| .
| .
side a| . side c
| .
| .
|_____________.
side b
''')
正如您在上面看到的,需要三个撇号而不是语音标记。为什么会这样?是转义字符吗?(我试过在谷歌上搜索:http: //bit.ly/15a4zes)