在学习django的时候用if 编写页面的时候报错
Could not parse the remainder: ‘>=90’ from ‘>=90’
源代码如下
运行报错
明明看着语法是对的,但是就是报错了
经查阅资料发现,if应该按照这个格式输出才不会报错
{% if 变量名 判断符 条件 %}
{% if score <= 90 and score < 100}
一定要用空格两边都隔开,否则还会报错!
{% if score空格<=空格90 and score空格<空格100}