Python3中字符串拼接方式有很多种,但是最常用的主要为以下两种
1. 使用%进行拼接(推荐使用)
name = input("Please input your name: ")
age = input("Please input your age: ")
sex = input("Please input your sex: ")
print("Information of \n\tName:%s\n\tAge:%s\n\tSex:%s" %(name,age,sex))
输出结果如下:
Information of Alex:
Name:Alex
Age:38
Sex:girl
使用%号的方法,我们在后面把变量统一进行添加,这样避免了使用加号的情况,能够让代码更加简短,这种方式简单方便,只要知道自己需要的是什么样的信息,在里面设置格式,然后把变量进行添加就可以了。
2.使用加号(+)号进行拼接
加号(+)号拼接是第一次学习Python常用的方法,我们只需要把我们要加的拼接到一起就行了,不是变量的使用单引号或双引号括起来,是变量直接相加就可以,但是我们一定要注意的是,当有数字的时候一定要转化为字符串格式才能够相加,不然会报错。
name = input("Please input your name: ")
age = input("Please input your age: ")
sex = input("Please input your sex: ")
print("Information of " + name + ":" + "\n\tName:" + name + "\n\tAge:" + age + "\n\tSex:" + sex)
输出结果如下:
Information of Alex:
Name:Alex
Age:38
Sex:girl