为了账号安全,请及时绑定邮箱和手机立即绑定

请问python如何打印字符串+变量值。例如:the value is 100

在C语言中:

int value = 100;

printf(“the value is %d\n”,value);

输出为 the value is 100

在python中:

value = 100

print(‘the value is’,value)

输出为 ('the value is',100)

正在回答

2 回答

value = 100

print("the value is %d" %value)  中间不能加逗号

0 回复 有任何疑惑可以回复我~

value = 100

print ('the value is %d',%(value))

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758623    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

请问python如何打印字符串+变量值。例如:the value is 100

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信