步骤一:将数字转换为字符串 在Python中,我们可以使用str()函数将数字转换为字符串。str()函数接受一个数字作为参数,并返回对应的字符串。 number=10string_number=str(number) 1. 2. 上述代码中,我们将数字10转换为字符串,并将结果赋值给变量string_number。 步骤二:将字符串和字符串相加 在Python中,字符串和...
# 把字符串复制n次,就是连续拼接n次 print("hello" * 3) # hellohellohello # 两个字符串可以相加 , 这里的 + 是字符串连接符的意思,用来连接两个字符串的 print("hello" + "python") # hellopython print("hello" + "python" + "ai") # hellopythonai # 布尔类型的值可以与数字直接运算, True...