• python基础一


    1、计算机基础。

    2、python历史。

    宏观上:python2 与 python3 区别:
    python2 源码不标准,混乱,重复代码太多,
    python3 统一 标准,去除重复代码。

    3、python的环境。

    编译型:一次性将所有程序编译成二进制文件。
    缺点:开发效率低,不能跨平台。
    优点:运行速度快。
    :C,C++等等。

    解释型:当程序执行时,一行一行的解释。
    优点:开发效率高,可以跨平台。
    缺点:运行速度慢。
    :python ,php,等等。

    4、python的发展。

    5、python种类。

    运行第一个py文件:
    python3x :python 文件路径 回车
    python2x :python2 文件路径 回车
    python2 python3 区别: python2默认编码方式是ascii码
    解决方式:在文件的首行:#-*- encoding:utf-8 -*-
    python3 默认编码方式utf-8

    6,变量。

    变量:就是将一些运算的中间结果暂存到内存中,以便后续代码调用。
    1,必须由数字,字母,下划线任意组合,且不能数字开头。
    2,不能是python中的关键字。
    ['and', 'as', 'assert', 'break', 'class', 'continue',
    'def', 'del', 'elif', 'else', 'except', 'exec',
    'finally', 'for', 'from', 'global', 'if', 'import',
    'in', 'is', 'lambda', 'not', 'or', 'pass', 'print',
    'raise', 'return', 'try', 'while', 'with', 'yield']
    3,变量具有可描述性。
    4,不能是中文。

    7、常量。

    一直不变的量。 π
    BIR_OF_CHINA = 1949


    8、注释。

    方便自己方便他人理解代码。
    单行注释:#
    多行注释:'''被注释内容''' """被注释内容"""

    9,用户交互。input

    1,等待输入,
    2,将你输入的内容赋值给了前面变量。
    3,input出来的数据类型全部是str

    示例代码行:

    name = input('请输入你的名字:')
    age = input('请输入你的年龄:')
    print('我的名字是'+name,'我的年龄'+age+'岁')

    10、基础数据类型初始。

    数字:int 12,3,45
    + - * / **
    % 取余数
    ps:type()
    字符串转化成数字:int(str) 条件:str必须是数字组成的。
    数字转化成字符串:str(int)
    示例代码:
    score = int(input("输入分数:"))

    字符串:str,python当中凡是用引号引起来的都是字符串。
    可相加:字符串的拼接。
    可相乘:str * int
    bool:布尔值。 True False。


    11、IF。

    if 条件:
      结果

    示例代码行:

    #二选一:
    第一种:

    if 4 > 5 :
      print('我请你喝酒')
      print('喝什么酒')

    第二种:

    if 4 > 5:
      print('我请你喝酒')
    else:
      print('喝什么酒')

    #多选一:

    num = input('请输入您猜的数字:')
    
    if num == '1':
    print('一起抽烟')
    elif num == '2':
    print('一起喝酒')
    elif num == '3':
    print('新开了一家,走看看')
    else:
    print('你猜错了.....')
    View Code

    #简单嵌套if语句:

    name = input('请输入名字:')
    age = input('请输入年龄:')
    
    if name == '小二':
        if age == '18':
            print(666)
        else:
            print(333)
    else:
        print('错了....')    
    View Code

    12、while。

    while 条件:
      循环体
      无限循环。

    print('111')
    while True:

    print('我们不一样')
    print('在人间')
    print('在人间')
    print('222')

    【首先运行出现111, 其次我们不一样、在人间、在人间在运行时会循环出现,最后:222不会出现】

    终止循环:1,改变条件,使其不成立。
    2,break
    3,continue
    示例代码:
    1、依次显示1-100

    (1)、
    count = 1
    flag = True
    #标志位
    while flag:
      print(count)
      count = count + 1
      if count > 100 :
        flag = False
    (2)、    
    count = 1
    while count <= 100:
      print(count)
      count = count + 1

    2、求1-100的和

    count = 1
    sum = 0
    
    while count <= 100:
      sum = sum + count 
      count = count + 1
    
    print(sum)

    #break

    print('11')
    while True:
      print('222')
      print(333)
      break
      print(444)
    print('abc')
    count = 1
    while True:
        print(count)
        count = count + 1
        if count > 100:break

    #continue

    print(111)
    count = 1
    while count < 20 :
      print(count)
      continue
      count = count + 1


  • 相关阅读:
    [页面布局方式]
    padding and margin
    【浏览器中的页面】
    【浏览器的页面循环系统】
    Activity启动模式详解(二)--->singleTask
    finish、onDestory、System.exit的区别
    Androidndk开发打包时我们应该如何注意平台的兼容(x86,arm,arm-v7a)
    关于WifiManager的一些看法
    高效的找出两个List中的不同元素
    关于Activity的生命周期
  • 原文地址:https://www.cnblogs.com/TheLand/p/8040339.html
Copyright © 2020-2023  润新知