美文网首页
python-入门-1

python-入门-1

作者: 巴巴11 | 来源:发表于2020-04-13 19:45 被阅读0次

    print("hello world") // python3中,print是一个函数
    print "hello world" // python2中,print是一个语句

    是乘方运算
    6
    2 = 36
    ^ 是位运算符,XOR

    值和类型
    type(2)
    <class 'int'>
    type(42.0)
    <class 'float'>
    type('hello world')
    <class 'str'>

    序列
    1,000,000 = (1,0,0)

    相关文章

      网友评论

          本文标题:python-入门-1

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