age = 19
if age>18:
print('adult')
print(age)
我的可以啊
age = 19 if age >= 18: print('your age = {}'.format(age)) print('adult')
👍不完整👍👍