Python 3.5学习笔记(第一周)
Posted MUOURAN0120
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 3.5学习笔记(第一周)相关的知识,希望对你有一定的参考价值。
本章内容:
1、安装python 3.5 和 PyCharm 社区版
2、第一个python程序
3、变量
4、字符编码
5、用户输入
6、字符串格式化输出
7、if 、else 、elif
8、for 循环
9、while 循环
一、安装python 3.5 和 PyCharm 社区版
python 3.5 : 链接:https://pan.baidu.com/s/1RzQmDc5H15XO26J1VfgYzA 密码:su3q
PyCharm 可以自行去官网下载,初学者使用社区版即可
安装python3.5 时一开始要记得勾选 “添加到环境变量” 。
安装完PyCharm后 ,点击File->setting->Project:Py_project->Project Interpreter 中设置需要的解释器
二、第一个python程序
创建一个工程目录: 依此选择 File->New Project, 设置工程路径和工程名后选择创建。
新建python文件:在新建的工程文件夹上右键,选择New -> Python File
设置文件名,点击ok,即可创建python文件
文件默认添加的内容是自己设置的,添加方法如下:
依此点击setting -> Editor -> File and Code Templates -> Python Script , 在右侧空白处添加上你需要的默认内容,第一行表示:文件以 utf-8 格式保存 ,第二行可以添加作者信息等
打印“hello world” :
在python文件中输入 :
1 print("hello world")
注:基于python3.x 以上, 2.x版本有所不同。
双引号括起来的内容是字符串,也可以用单引号括起来,但是不可混用。
在python文件中右键选择 Run “helloworld” ,即可看到下方输出窗口打印出来的“ hello world ” 。
至此第一个python程序编写完成。
三、变量
变量的官方文档定义是:
Variables are used to store information to be referenced and manipulated in a computer program. They also provide a way of labeling data with a descriptive name, so our programs can be understood more clearly by the reader and ourselves. It is helpful to think of variables as containers that hold information. Their sole purpose is to label and store data in memory. This data can then be used throughout your program.
声明一个变量的格式:
变量名 = 变量内容
声明变量的规则:
- 变量名只能是 字母、数字或下划线的任意组合
- 变量名的第一个字符不能是数字,可以是下划线
- python内置的关键字不可以作为变量名,如 and 、 as 、break 等等
- python 可以将中文作为变量名,但是不建议这样做
变量的赋值:
用 “ = ” 给变量赋值
1 name = "MR"
2 Time_hour = 60
四、字符编码
python解释器在加载.py 文件中的代码时,会对文件中的内容进行编码(默认为ACSCII 码)
ASCII(American Standard Code for Information Interchange,美国标准信息交换代码)是基于拉丁字母的一套电脑编码系统,主要用于显示现代英语和其他西欧语言,其最多只能用 8 位来表示(一个字节),即:2**8 = 256-1,所以,ASCII码最多只能表示 255 个符号。
ASCII码:ASCII(American Standard Code for Information Interchange,美国标准信息交换代码)是基于拉丁字母的一套电脑编码系统,主要用于显示现代英语和其他西欧语言,其最多只能用 8 位来表示(一个字节),即:2**8 = 256-1,所以,ASCII码最多只能表示 255 个符号。
由于ASCII 码无法支持世界上所有的文字和符号,而python 默认使用ASCII 码,所以在代码中包含中文的时候,需要在最初 添加上一条语句
# -*- coding:utf-8 -*-
来告诉python 解释器,应该用 utf -8 编码来执行源代码
五、用户输入
1、普通输入
1 name = input ("Please input your name:")
2 print(name)
2、输入密码时,如果想要不可见,则需要使用getpass 模块中 的getpass 方法:
1 import getpass
2 password = getpass.getpass("Please input the password:")
3 print(password)
六、字符串格式化输出
1 name = "MR"
2 print ("I am %s " % name)
>>>I am MR
解释: %s 可以用于大部分地方,当一条语句有多个地方需要进行格式化的时候,注意格式化的前后顺序
1 name = input("name:")
2 age = input ("age:")
3 job = input ("job:")
4
5 info ="""
6 Name :{_name}
7 Age: {_age}
8 Job :{_job}
9
10 """ .format(_name=name,_age = age, _job = job)
11
12 print (info)
解释: 使用 .format() 的方法进行格式化时,只要将 { } 中的临时变量名 和 真正的变量名对应起来即可, 临时变量名可以是任意内容,比如数字。
注: # 表示单行注释
三对引号括起来的内容既可以表示多行注释,也可以用作多行字符串。
七、if 、else 、elif
1、if、else
1 username = input("username:")
2 password = input("password:")
3 if ((username == "MR" or "mr" )and password =="123"):
4 {
5 print("恭喜通过")
6 }
7
8 else:
9 {
10 print("用户名或密码错误")
11 }
解释: 用户名不区分大小写,当条件满足if语句时,只执行if 语句下的内容, 否则执行 else。
如果含有elif, 则elif 和 if 是并列关系,只执行条件满足的语句。
注意: 冒号不能少
八、for 循环
1、for + range() :
range() 用于生成一组数,格式是 range (a,b[,c]) :表示生成一组从a -> b 的数(不包括b),a、c为可选参数,a是起点,默认为0,c是步长,默认为1
1 for i in range(10):
2 print (i)
#依次打印0-9
>>>
0
1
2
3
4
5
6
7
8
9
2、for + if
1 for i in range(0,10):
2 if i < 3 :
3 {
4 print("loop", i)
5 }
6 else:
7 continue
8 print("hehe...")
九、while 循环
1、while (True):
无限循环
1 count = 0
2 while True:
3 print("你是风儿我是沙,缠缠绵绵到天涯...",count)
4 count +=1
2、while (条件):
满足条件时一直循环
实例:让用户猜年龄,三次猜错,让用户选择是否继续
1 age_of_oldboy = 56
2 x= 3
3 while x > 0:
4 guess_age = int(input("input age:"))
5 if (guess_age == age_of_oldboy):
6 print("yes,you got it")
7 break
8 elif (guess_age > age_of_oldboy):
9 print("think smaller ...")
10 else:
11 print("think bigger ...")
12 x -= 1
13 if x ==0:
14 game_continue = input("Do you want continue? Y/N")
15 if game_continue == "Y" or game_continue =="y" :
16 x = 3
17 else:
18 x=0
以上是关于Python 3.5学习笔记(第一周)的主要内容,如果未能解决你的问题,请参考以下文章