strname = "str1" "str2"
strname 表示拼接以后的字符串变量名,str1 和 str2 是要拼接的字符串内容。使用这种写法,Python 会自动将两个字符串拼接在一起。str1 = "Python教程" "http://task.lmcjl.com/python/" print(str1) str2 = "Java" "Python" "C++" "PHP" print(str2)运行结果:
Python教程http://task.lmcjl.com/python/
JavaPythonC++PHP
+
运算符来拼接,具体格式为:
strname = str1 + str2
当然,+
运算符也能拼接字符串常量。+
运算符拼接字符串:
name = "C++教程" url = "http://task.lmcjl.com/cplus/" info = name + "的网址是:" + url print(info)运行结果:
C++教程的网址是:http://task.lmcjl.com/cplus/
str(obj)
repr(obj)
name = "C语言中文网" age = 8 course = 30 info = name + "已经" + str(age) + "岁了,共发布了" + repr(course) + "套教程。" print(info)运行结果:
C语言中文网已经8岁了,共发布了30套教程。
s = "http://task.lmcjl.com/shell/" s_str = str(s) s_repr = repr(s) print( type(s_str) ) print (s_str) print( type(s_repr) ) print (s_repr)运行结果:
<class 'str'>
http://task.lmcjl.com/shell/
<class 'str'>
'http://task.lmcjl.com/shell/'
本文链接:http://task.lmcjl.com/news/9331.html