# Python-learning-day-by-day **Repository Path**: stam1nazzz/Python-learning-day-by-day ## Basic Information - **Project Name**: Python-learning-day-by-day - **Description**: Day1 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-09 - **Last Updated**: 2021-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Python-learning-day-by-day # 本库作为自学Python的代码存放 ## 2019.1.25 ### 1.环境搭建 anaconda环境配置 解释器 ## 2.python初体验 print and input ### 3.python基础讲解 python变量特性+命名规则 注释方法 python中“:”作用 学会使用dir( )及和help( ) import使用 pep8介绍 ### 4.python数值基本知识 python中数值类型,int,float,bool,e记法等 算数运算符 逻辑运算符 成员运算符 身份运算符 运算符优先级 ### 5.string字符串 定义及基本操作(+,*,读取方式) 字符串相关方法 字符串格式化问题 ### 【作业】 学习代码分享,200-300行要求。 作业:要求用户依次输入姓名,性别,年龄,并对用户信息进行输出格式如下:您的姓名是:xxx,您的性别是:xxx,您是xxx年出生的。 ************************************************** ## 2019.1.26 ### 1.基础   列表   标志   基本操作(创建,append( ),pop( ) ,del( ),深浅拷贝)   列表相关方法   元组   标志 ### 2.基本操作(创建及不可变性)   提升   序列类型,相互转换及方法 ### 【作业】   学习代码200-300行 定义一个列表,包含自己的家庭成员,并在指定位置插入给定元素,例如你的男女朋友名称等。再将男女朋友名字移除等操作。