• day11——考试python2和python3的区别


    python:优美,清晰,简单。

    区别:

    ① python2x:源码混乱、重复代码较多,冗余
         python3x:源码规范,崇尚优美清晰,简单

    ②   python3x               print('内容')

      python2x                print('内容')或者print '内容'

    ③    python3x        默认编码:utf-8

      python2x        默认编码:ascii

    如果要print中文,需要指定编码    # -*- encoding:utf-8 -*-

    ④   用户输入: input

        python2x: raw_input()

              input()   相当于eva1

        python3x: input()

    ⑤      python2x:   range在2x里面--------->    数字列表

              xrange--------------------->   可迭代对象

         python3x:   range  -------------------->   可迭代对象

  • 相关阅读:
    MATLAB accumarray
    函数rand,randn,randi
    bsxfun
    sub2ind函数
    MAX
    & 和 &&
    matlab函数int2str, num2str, str2num
    ASCII对照表
    STM32的ADC配置
    单节锂电池基本知识
  • 原文地址:https://www.cnblogs.com/-li926/p/9483641.html
Copyright © 2020-2023  润新知