Python–ToDay
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python–ToDay相关的知识,希望对你有一定的参考价值。
1.Python数据类型
1>数字
1。int 整形 ,long长整型,float 浮点型 ,complex 复数
2>布尔值 真或假 1 或0
3> 字符串
字符串格式化输出 %s 字符串 ; 整数%d ;浮点数 %f
字符串常用功能 1:移除空白 2:分割 3:长度 ; 4索引 ;5切片
4>列表
创建列表:
name_list = [‘alex’, ‘seven’] 或者
name_list = list([‘ales’, ‘seven’,‘eric’]}
5>元组
不可变列表 创建元组
ages =(34,56,45,43,23) 或 ages = tuple((34,34,34,))
6>字典 无序
person = {“name”:"mr.wu”,‘age‘:10} 或 person=dict({“name":"mr.wu",‘age‘:18})
Python入门
1.三元运算符 result = 值1 if 条件 else 值2
2. 二进制转16进制 每四进一 1111 -->15
bytess string 转换 ,bytes decode 转为str str encode 转为bytes
以上是关于Python–ToDay的主要内容,如果未能解决你的问题,请参考以下文章
Python Algorithms – chapter3 计数初步
Python Algorithms – chapter2 基础知识
转载关于Python脚本开头两行的:#!/usr/bin/python和# -*- coding: utf-8 -*-的作用 – 指定文件编码类型