请问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)
在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)
2018-11-15
举报