zoukankan      html  css  js  c++  java
  • 数据类型

    1、数字

    python3中数字类型:int,float,complex、bool

    a = 99    
    print(type(a))    
    # <class 'int'>
    
    b = 1.2
    print(type(b))
    # <class 'float'>
    
    c = 1+2j
    print(type(c))
    # <class 'complex'>
    
    d = True
    print(type(d))
    # <class 'bool'>
    

    1.1 数值运算

    >>> 1+2	
    3
    >>> 2-1
    1
    >>> 1.5*3
    4.5
    >>> 11 / 2		# 除法
    5.5
    >>> 11 // 2		# 除法,取整
    5
    >>> 11 % 2		# 取余
    1
    >>> 2 ** 3
    8
    

    在混合计算时,Python会把整型转换成为浮点数。

    2、字符串

     2.1 字符串定义

    字符串定义可以是用单引号,双引号,且可以使用反斜杠转义

    >>> strA = 'testa'	# 单引号为变量赋值
    >>> strB = "testb"	# 双引号为变量赋值
    >>> strC = "test
    c"	# 转义
    >>> print(strA)
    testa
    >>> print(strB)
    testb
    >>> print(strC)
    test
    c
    

      

    3、

  • 相关阅读:
    c++ primer plus 第六章 课后题答案
    动态创建easyui控件的渲染问题
    晨报
    动态构建easyUI grid
    早起
    周末
    js ajax方式拼接参数
    5个月
    锻炼
    东湖夜色
  • 原文地址:https://www.cnblogs.com/f0t1/p/13927009.html
Copyright © 2011-2022 走看看