课程
/后端开发
/Python
/初识Python
cars=100
print("there are",cars,"cars available.")
2019-09-21
源自:初识Python 1-1
正在回答
1111
print("there are + %d + cars available." % cars);
py2执行字符串拼接,要格式化输出。
print('there are'+str(cars)+'cars available.')
你是在慕课上运行的吗?慕课应该用的是Python2的编译器,你用Python3是没有这种情况的.具体原理我也不清楚
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序