# pythonStudy **Repository Path**: Maria_l/pythonStudy ## Basic Information - **Project Name**: pythonStudy - **Description**: python 学习与强化 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-08-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pythonStudy python 学习与强化 1. **python** 是一门动态解释性的强类型定义语言(可以直接书写汉语) 若为可执行程序,必须声明解释器 #!/usr/bin/evn/python (全局确定) #!/usr/bin/python (固定位置确定) 2.变量 变量是为了储存东西的(有一个名字,以便调用) 变量定义的规则: 1. 变量名只能是字母、数字、下划线的任意组合 2. 变量名的第一个字符不能是数字 3. 关键字不能声明为变量名