遇到的Errors

1.print "Hello World"

          ^
        SyntaxError: Missing parentheses in call to 'print'. Did you mean print(nt "Hello World")?

        print("Hello World") 缺失插入语,少了括号

        

2.print("缩进")

 ^

 IndentationError: unexpected indent   缩进有问题

原文地址:https://www.cnblogs.com/scholarly/p/15396745.html