第一个程序在 python 中出现语法错误
Getting a Syntax Error in python with first program
所以,我刚刚开始尝试学习 Python,我正在关注一个名为 "book" 的项目:用 Python 自动化无聊的东西。我正在做书中的第一个程序,我认为一切顺利……但现在我遇到了一个错误,我无法弄清楚原因。
# This Program says hello and ask for my name.
print('Hello world!')
print('What is your name?') # ask fo their name
myName = input()
print('It is good to meet you, ' + myName)
print('The length of your name is:')
print(len(myName)
print('What is your age?') # ask for thier age
myAge = input()
print('You will be ' +str(int(myAge) + 1) + ' in a year.')
VS Code 显示错误从第 9 行开始,但我终究无法弄清楚。任何帮助将不胜感激。
谢谢。
print(len(myName)
缺少“)”。
所以,我刚刚开始尝试学习 Python,我正在关注一个名为 "book" 的项目:用 Python 自动化无聊的东西。我正在做书中的第一个程序,我认为一切顺利……但现在我遇到了一个错误,我无法弄清楚原因。
# This Program says hello and ask for my name.
print('Hello world!')
print('What is your name?') # ask fo their name
myName = input()
print('It is good to meet you, ' + myName)
print('The length of your name is:')
print(len(myName)
print('What is your age?') # ask for thier age
myAge = input()
print('You will be ' +str(int(myAge) + 1) + ' in a year.')
VS Code 显示错误从第 9 行开始,但我终究无法弄清楚。任何帮助将不胜感激。
谢谢。
print(len(myName)
缺少“)”。