美文网首页
2019-08-08

2019-08-08

作者: 学习学习学习ing | 来源:发表于2019-08-08 16:19 被阅读0次

    变量

    是为了储存程序运算过程中的一些中间结果,为了方便日后调用。

    (python不区分常量、变量)

    student-number = 30             puthon常用变量书写规则

    studentNumber = 30驼峰体

    变量的命名规则:

    [if !supportLists]1. [endif]要具有描述性

    [if !supportLists]2. [endif]变量名只能用_、数字、字母,不能以空格或特殊字符(#、¥、$、&、!等)

    [if !supportLists]3. [endif]不能以中文为变量名

    [if !supportLists]4. [endif]不能以数字开头

    [if !supportLists]5. [endif]保留字符是不可以被使用

    常量:不变的量

    在python中所有的量都是可变的,所以用全部大写的变量名来代表的变量是常量。

    注释:

    单行:#

    多行:’’’    ‘’’或”””      “””

    相关文章

      网友评论

          本文标题:2019-08-08

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