# Enter a code
age = 19
if age>=18:
print('咚咚锵的年龄是',age)
if age>18:
print('adult')
print(age)
# coding: utf-8
print("咚咚锵的年龄是: {}".format(age))
找到答案了,前边需要加上
#coding:utf-8