课程
/后端开发
/Python
/Python3 入门教程(新版)
ega = 18 if ega >= 18: print('adult') else: print('teenager')
2022-04-08
源自:Python3 入门教程(新版) 4-2
正在回答
可以。不过建议你这样写
age=17
if age>=18:
print('adult')
print('your age is {}'.format(age))
else:
print('teenager')
可以的
举报
python3入门教程,让你快速入门并能编写简单的Python程序
2 回答请问这样可以吗
4 回答这样可以吗?
6 回答这样写也是可以的
2 回答麻烦大佬帮忙看一下这样写可以吗?
1 回答帮忙看下这样写可以不?