python之字符串

一、字符串的聲明有三種方式:單引號、雙引號和三引號(包括三個單引號或三個雙引號)。例如:>>> str1 = 'hello world' >>> str2 = "hello world" >>> str3 = '''hello world''' >>> str4 = """hello world""" >>> print str1  hello world  >>> print str2  hel
相關文章
相關標籤/搜索