python与c++区别之print

C++:

printf

python :

print

name = "keivin"
print("testname%s, hello"% name)

两者的名字不一样,c++多一个f

C++:

#include
main()
{
	char* name ="keivin";
	printf("testname %s hello",name);
} 

我们看到python中print("testname%s, hello"% name)
python中需要使用 %加变量名
而C++语言中printf("testname %s hello",name);
C++中是直接用逗号分隔变量的

python中多个格式化输出要用元组 多个变量要用括号括起来 的形式

a = 6.5
b = 7.2
c = 100
print("a=%.2f,b=%.2f ,c=%.2d"%(a,b,c))

c++

float a = 6.5;
float b = 7.2;
int c = 100;
printf("a=%.2f,b=%.2f ,c=%.2d",a,b,c);

先写到这里吧,等我更熟悉了再来更新,我也是个水鸟

你可能感兴趣的:(python,python与c++区别,python与c++对比,python与c++差异)