zoukankan      html  css  js  c++  java
  • 01 Python初识

    基础:

    1.后缀名是py       ATT: 单个文件执行,后缀无所谓
    2.两种执行方式 终端 python+文件路径
    解释器内部: 直接执行

    3.解释器路径: #/usr/bin/env python
    4.编码
    # -*- coding:utf8 -*-
    utf-8一种编码 能用多少用多少位 避免浪费内存
    5.执行一个操作

    input的用法 永远等待直到用户输入XX


    6.变量名 只能由 字母 数字 下划线
    特例:不能用数字开头
    Python的关键字不能使用( as and if )
    最好不要与Python内置的东西重复


    7.条件语句
    1.if 基本语句

    if 条件: #条件成立,则执行下一行
        print(‘ok’)
        print(‘ok'
    elseprint(‘Error’) #att格式缩进(严格) 一般缩进四个空格
        #Tab键 直接缩进四空格
    print(’end‘)



    2.if嵌套:

    if 条件:
        if 条件2:
            print XXXX
        else:
    else:
        print XXXX
    

      



    3.多条件判断

    input的用法=input('XXX')
    if inp=
        print
    elif inp=
        print
    else
        print 
    print end


    8.基本数据类型
    字符串 引号之内的内容
    可加可乘

    数字 1.无引号2.数字
    加减乘除 乘方** 取余数% 整除数//

    9.循环
    死循环:

    while TRUE
    print (OK)

    例子:
    #1死循环

    count=0
    
    while count<10:
        print (ok)
    
    print (end)


    #2不死循环

    count=0
    
    while count<10:
        print (ok)
        count=count+1
    
    print (end)



  • 相关阅读:
    Entity SQL 初入
    ObjectQuery查询及方法
    Entity Framework 的事务 DbTransaction
    Construct Binary Tree from Preorder and Inorder Traversal
    Reverse Linked List
    Best Time to Buy and Sell Stock
    Remove Duplicates from Sorted Array II
    Reverse Integer
    Implement Stack using Queues
    C++中const限定符的应用
  • 原文地址:https://www.cnblogs.com/louzhiyuan/p/10350811.html
Copyright © 2011-2022 走看看