我一直收到意想不到的令牌; (1,7)

时间:2018-10-13 06:59:50

标签: java

我正在关注YouTube教程,并且不断收到此错误。

from flask import Flask, render_template, url_for

app = Flask(__name__)

@app.route("/")
@app.route("/home")
def home():
    return render_template("home.html")

if __name__ == "__main__":
    app.run(debug=True)

报告的错误是:

  

本机浏览器JavaScript
  SyntaxError:意外的令牌,预期; (1:7)

The reported error

回答了!

2 个答案:

答案 0 :(得分:0)

您错过了将;放在第5行的末尾:

System.out.println("hello world");

编辑:

使用public代替Public,并用System代替system

public class Java_Lesson_1 {
    public static void main(String[] args) {
        System.out.println("hello world");
    }
}

答案 1 :(得分:0)

错误1:s in String should be CAPITAL

错误2:First s in System should be CAPITAL

错误3:In Java every statement ends with a ;

下面是正确的代码。请记住,Java是区分大小写的语言。字符串和字符串不同。

public class Java_Lesson_1
{
   public static void main(String[] args)
   {
      System.out.println("Hello World");
    }
}

希望这会有所帮助。