美文网首页
Python 2 Programming Tutorial -

Python 2 Programming Tutorial -

作者: 豆表示低调 | 来源:发表于2016-08-29 16:36 被阅读0次
    >>> 3 + 4
    7
    >>> 3 * 20
    60
    >>> 12 / 4
    3.0
    >>> 8 + 2 * 10
    28
    >>> (8 + 2) * 10
    100
    >>> 18 / 4
    4.5
    >>> 18//4
    4
    >>> 18%4
    2
    >>> 5 * 5 * 5
    125
    >>> 5 ** 3
    125
    >>> tuna = 5
    >>> 20 + tuna
    25
    >>> bacon = 18
    >>> bacon / tuna
    3.6
    

    相关文章

      网友评论

          本文标题:Python 2 Programming Tutorial -

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