美文网首页
python3 基础语法笔记

python3 基础语法笔记

作者: zzqsmile | 来源:发表于2020-08-27 16:30 被阅读0次
    基础语法
    编码
    #!/usr/bin/python3
    # -*- coding: utf-8 -*-
    
    多行语句

    Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠()来实现多行语句,例如:

    #!/usr/bin/python3
    # -*- coding: utf-8 -*-
    
    a = 1 + \
        1 + \
        1
    print(a)  
    # 输出3
    

    在 [], {}, 或 () 中的多行语句,不需要使用反斜杠(),例如:

    相关文章

      网友评论

          本文标题:python3 基础语法笔记

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