python不会运算,小白问题

age=19

if ang>=18
print("You are old enough to vpte")
这个怎么运算

  1. 首先代码编辑错误,纠正如下:
age = 19
if age >= 18:
    print("You are old enough to vpte")

??什么意思
第一行给age设个int,为19
第二行是if age>=18,对age做个判断
因为age为19,判断为真,进入if内部,输出