写点什么

python 与 c++ 区别之 print

用户头像
沈阳
关注
发布于: 2021 年 02 月 24 日

C++:


printf


python :


print


name = "keivin"print("testname%s, hello"% name)
复制代码


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


C++:


#include<stdio.h>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.5b = 7.2c = 100print("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);
复制代码


先写到这里吧,等我更熟悉了再来更新


用户头像

沈阳

关注

还未添加个人签名 2021.01.06 加入

还未添加个人简介

评论

发布
暂无评论
python与c++区别之print