• 01、python基础知识:


    1、注释 

            多行注释 

            单行注释

    2、 数据类型

    3、标识符 关键字

    常用的标识符: 

    常用关键字:

    4、输入输出

            4.1 格式化输出: 格式化符号 占位符;

    5、运算符、 数据类型转化:

     

    1、字符串:

     1.1、格式:

            单引号、双引号、三引号 3种格式;

    2、输出:

            占位符2种表示方法:

            print(“hello % ”,name)

            print("hello {}", fomart(name) )

                            简写:print (f"hello{name}")

    3、 输入

                    都是字符串

    4 、下标和切片

            下标:0开始 ; -1 逆向取值; 越界后就报错;

            print ( name[1])

            切片: 字符串:集合

            print(str[1:3:]) 起始:结尾:步长; [0,3)

            默认步长:1

            print(str[::-1]) 步长为负,方向取值; 字符串翻转;

            prin([-1::]) 去除最后位置

    5、其他操作:

    1. find

            检测 str 是否包含在 mystr中,如果是返回开始的索引值,否则返回-1

                    mystr.find(str,startae, endmlen(mystr))

    2.index

            跟find()方法一样,只不过如果str不在 mystr中会报一个异常

            mystr.index(str,startme, endmlen(mystr))

    3.count

            返回 str在start和end之间 在mystr里面出现的次数

            mystr.count(str, start=e, end=len(mystr))

    4.replace

            把 mystr 中的 str1 替换成 str2,如果 count 指定,则替换不超过 count 次

            mystr.replace(str1,str2, mystr.count(str1))

    5.split

            以str 为分隔符切片mystr,如果 maxsplit有指定值,则仅分隔 maxsplit 个子字符串

            mystr.split(str=”",2)

    6.capitalize

            把字符串的第一个字符大写

            mystr.capitalize()

    7. title

            把字符串的每个单词首字母大写

            >>> a = "hello zhangsan”

            >>> a.title()

    "        He1lo Zhangsan "

    8. startswith

            检查字符串是否是以 hello 开头,是则返回 True,否则返回 False

            mystr,startswith(hel1o)

    9.endswith

            检查字符串是否以obj结束,如果是返回True,否则返回 False

            mystr.endswith(obj)

    10.lower

            转换 mystr 中所有大写字符为小写

            mystr.lower()

    11.upper

            转换mystr 中的小写字母为大写

            mystr.upper()

    12. Istrip

            删除 mystr 左边的空白字符

            mystr.Istrip()

    13. rstrip

            删除 mystr 字符串末尾的空白字符

            mystr.rstrip()

    14. strip

            删除mystr字符串两端的空白字符

            *\n\t zhangsan \t\n”

            strip( zhangsan

    15. isdigit

            如果 mystr 只包含数字则返回 True 否则返回 False

            mystr.isdigit()

    16. join

            str 中每个元素后面拼接上mystr,构造出一个新的字符串

    2、列表

    1、格式:

            [1,3,3,4,]

    2、遍历: for a in names:

            for:

            while:

    3、 CURD:

            append: extend: insert:

            list[]='111'

            del: pop remove

    3、元组:

            不允许修改:

    4、 字典:

            key-values 形式;

            CURD:

            字典是乱序的;

            map['name']

            遍历

                    map.keys()

                    map.values()

                    map.items()

    5、函数:

    格式:

    逻辑关系

  • 相关阅读:
    【瑞萨零基础入门】瑞萨MCU零基础入门系列教程(更新连载中)
    CSS 之 优雅的垂直居中
    深度学习处理器架构之GDMA学习笔记
    elasticsearch-5.6.15集群部署,如何部署x-pack并添加安全认证
    Part15:Pandas怎样实现groupby分组统计
    VSCode提交代码
    Python 自动化测试技术面试真题
    Web安全:Vulfocus 靶场搭建.(漏洞集成平台)
    cba新闻查询易语言代码
    2 Advanced Learning Algorithms
  • 原文地址:https://blog.csdn.net/sq_com/article/details/133764652