Python Intro,if语句。无效的语法

时间:2017-08-27 02:46:39

标签: python-3.x

大家好,我是新来的,也是python的新手。我正在网上找到一些Python练习,并且我坚持做错了。我正在努力学习和自学if if和else语句。这是我的代码。

num[j]

我在50之后收到无效的语法错误:并且不确定原因。任何人都可以简单地解释我做错了什么吗?

感谢您的时间。

3 个答案:

答案 0 :(得分:2)

在第一行,您错过了最后的括号。

weight = (float(input("How much doees your suitcase weigh? ")))
if weight > 50 :
     print("There is a $25 fee for a luggage that heavy.")

print("Thank you for your buisness. ")

input()

答案 1 :(得分:1)

解决方案是正确的......你实际上有额外的括号。

此代码也有效:

weight = float(input("How much does your suitcase weigh? "))

if weight > 50:
    print("There is a $25 fee for a luggage that heavy.")

print("Thank you for your business")

答案 2 :(得分:0)

使用任何编程语言,您需要知道您打开/关闭的括号。

weight = (float(input( 

现在你有三个((所以最后你还需要三个括号

weigh? ")))