美文网首页
python3 - 字符串单双三引号

python3 - 字符串单双三引号

作者: JimmyAnn | 来源:发表于2017-07-06 14:08 被阅读0次

    字符串单双三引号

    1.单引号

    str1 = 'python'
    
    print(str1)
    
    >>> ptyhon
    

    2.单引号中使用双引号

    str2 = '"python"'
    
    print(str2)
    
    >>> "python"
    

    3.双引号中使用单引号

    str3 = "'python'"
    
    print(str3)
    
    >>> 'python'
    

    4.三单引号

    str4 = '''python'''
    
    print(str4)
    
    >>> python
    

    5.三单引号中间使用双引号

    str5 = '''"python"'''
    
    print(str5)
    
    >>> "python"
    

    6.三单引号中有换行符

    str6 = '''hello
    python'''
    
    print(str6)
    
    >>> hello #换行了
    >>> python
    

    7.三双引号中有换行符

    str7 = """hello
    python"""
    
    print(str7)
    
    >>>  hello 换行了
    >>>  python
    

    相关文章

      网友评论

          本文标题:python3 - 字符串单双三引号

          本文链接:https://www.haomeiwen.com/subject/mtuhhxtx.html