课程
/后端开发
/Python
/Python3 入门教程(新版)
age = 19
if age>=18:
print("dongdong age" {}.format(age))
print("adult")
2021-02-09
源自:Python3 入门教程(新版) 4-1
正在回答
错误写法print("dongdong age" {}.format(age))
正确写法print("dongdong age {}".format(age))
举报
python3入门教程,让你快速入门并能编写简单的Python程序
2 回答为什么运行不出来Hello World?
1 回答为什么我这运行失败
2 回答为什么我执行出来是0?
1 回答为什么加上\运行不了