当前位置:   article > 正文

python黑马学习_黑马python

黑马python

python的自述

能做什么

1.抢火车票

2.数据分析

3.开发网站

4.开发游戏

发展定位

web全栈开发方向

掌握技术

前端开发

数据库管理

后台框架

职业方向

web全栈开发工程师

数据科学方向

人工智能方向,机器学习

人工智能方向,深度学习

等等···

python简介

交互式语言-可以在提示符-后直接执行代码

面向对象的编程语言

搭建python开发环境

1.安装python解释器

Download Python | Python.org

https://www.python.org/downloads/downloads/release/python-381/

 提示:安装时记得勾选 path

IDLE 自带的简单开发环境

交互式命令行程序

官方技术文档

已安装的模块

 集成开发环境:pycharm

设置python代码框自定义模板

file-settings

 python中的输出函数

print(520)

可以输入内容可以是数字、字符串、含有运算符的表达式

print()函数可以将内容输入的目的地

1.显示器

2.文件

print()函数的输出形式

1.换行

2.不换行

  1. #可以输出数字
  2. print(520)
  3. print(98.3)
  4. #可以输出字符串
  5. print('helloworld')
  6. #输出含有运算符的表达式
  7. print(3+22)
  8. #将数据输出文件中,注意点:1.所指定的盘符存在 2.使用file=fp
  9. fp=open('D:/text.txt','a+') #a+:如果文件不存在就创建,存在就在文件内容的后面继续追加
  10. print('helloworld',file=fp)
  11. fp.close()
  12. #不进行换行输出(输出内容在一行当中)
  13. print('hello','world','python')

转义字符

反斜杠+想要实现的转义功能首字母

反斜杠:\\

单引号:\’

双引号:\"

换行:\n

回车:\r

水平制表符:\t

退格:\b

  1. #转义字符
  2. print('hello\nworld') #\ +转义功能的首字母 n-->newline的首字符表示换行
  3. print('hello\tworld')#一组四个空格的位置
  4. print('helloooo\tworld')#相当于(hello )(ooo )(world)
  5. print('hello\rworld')#world因为回车把hello覆盖了
  6. print('hello\bworld')#退格,所以o退没了
  7. print('http:\\\\www.baidu.com')
  8. print('老师说:\'大家好\'')
  9. #原字符,不希望字符串中的转义字符起作用,就是用原字符,就是在字符串之前加上r或R
  10. print(r'hello\nworld')
  11. #注意事项:最后一个字符不能是反斜杠
  12. print(r'hello\nworld\')

 

  1. #0b表示二进制
  2. print(chr(0b100111001011000))
  3. #0rd表示十进制
  4. print(ord('乘'))

python中的标识符和保留字

规则:

·变量、函数、类、模块、和其他对象起的名字就叫标识符

·规则

1.字母、数字、下划线_

2.不能以数字开头

3.不能是.py保留字

4.严格区分大小写

保留字:['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']

变量的定义和使用

(变量名)name (赋值运算符)= ’值‘

 

 

 

 

 

 采用的是二进制存储,会产生误差

 

boolean 简写bool布尔类型

 快捷键:ctrl+D 复制上一层

python中的注释

单行注释以#开头,直到换行

多行注释,一对三引号之间的代码成为多行注释

 

 

输入之前程序给你的提示语

  1. present=input('大圣想要什么礼物')
  2. print(present,type(present))
  3. 大圣想要什么礼物金箍棒
  4. 金箍棒 <class 'str'>

 python中的运算符

算术运算符

 

  1. a=b=c=20
  2. print(a,id(a))
  3. print(b,id(b))
  4. print(c,id(c))
  5. 20 140707538192640
  6. 20 140707538192640
  7. 20 140707538192640

 

 

 比较运算符

  1. a=10
  2. b=10
  3. print(a==b) #True 说明:a,b的value 相等
  4. print(a is b) #True 说明:a,b的标识 相等

 

 

 

  1. print(4&8) #按位与&,同为1时结果为1
  2. print(4|8) #按位或|同为0时结果为0
  3. print(4<<1) #向左移动1位(移动一个位置) 相当于乘2
  4. print(4<<2) #向左移动2位(移动2个位置)
  5. print(4>>1) #向右移动1为 相当于除以2
  6. print(4>>2) #向右移动2为 相当于除以4
  7. 0
  8. 12
  9. 8
  10. 16
  11. 2
  12. 1

 

 

 

  1. print('------以上的对象的布尔值为False-----')
  2. print(bool(False)) #Flase
  3. print(bool(0)) #Flasee
  4. print(bool(0.0))#False
  5. print(bool(None))#False
  6. print(bool(''))#False#False
  7. print(bool(""))#False
  8. print(bool([]))#空列表
  9. print(bool(()))#空列表
  10. print(bool(tuple()))#空元组
  11. print(bool({}))#空字典
  12. print(bool(dict()))#空字典
  13. print(bool(set()))#空集合
  14. print('------其他的均为True-----')
  15. print((bool(18)))
  16. print((bool(True)))
  17. print((bool('hello word')))

 

 

 

 

  1. '''从键盘录入一个整数成绩
  2. 90-100 A
  3. 80-89 B
  4. 70-79 C
  5. 60-69 D
  6. 0-59 E
  7. 小于0或大于100 为非法数据(不是成绩的有限范围)'''
  8. score=int(input('输入成绩'))
  9. #判断
  10. if score>=90 and score<100:
  11. print('A')
  12. elif score>=80 and score<=89:
  13. print('B')
  14. elif score>=70 and score<=79:
  15. print('C')
  16. elif score>=60 and score<=69:
  17. print('D')
  18. elif score>=0 and score<=59:
  19. print('E')
  20. else:
  21. print('输入错误')
  22. score=int(input('输入成绩'))
  23. #判断
  24. if 90<=score<100:
  25. print('A')
  26. elif 80<=score<=89:
  27. print('B')
  28. elif 70<=score<=79:
  29. print('C')
  30. elif 60<=score<=69:
  31. print('D')
  32. elif 0<=score<=59:
  33. print('E')
  34. else:
  35. print('输入错误')

 

  1. '''会员 >=200 8折
  2. >=100 9折
  3. |不打折
  4. 非会员 >=200 9.5折
  5. |不打折'''
  6. answer=input('您是会员吗?y/n')
  7. money=float(input('请输入您的购物金额:'))
  8. #外层判断是否会员
  9. if answer=='y' : #会员
  10. if money>=200:
  11. print('打8折,付款金额为:',money*0.8)
  12. elif money >= 100:
  13. print('打9折,付款金额为:',money*0.9)
  14. else:
  15. print('不打折,付款金额为:',money)
  16. print('会员')
  17. else: #非会员
  18. if money>=200:
  19. print('打9.5折,付款金额',money*0.95)
  20. else:
  21. print('非会员不打折,付款金额为',money)

 

  1. '''从键盘录入两个整数,比较两个整数的大小'''
  2. num_a=int(input('请输入第一个整数'))
  3. num_b=int(input('请输入第二个整数'))
  4. print('使用条件表达式进入比较')
  5. print(str(num_a)+'大于等于'+str(num_b) if num_a>=num_b else str(num_a)+'小于'+str(num_b))
  1. '''从键盘录入两个整数,比较两个整数的大小'''
  2. num_a=int(input('请输入第一个整数'))
  3. num_b=int(input('请输入第二个整数'))
  4. #比较大小
  5. '''if num_a>=num_b:
  6. print(num_a,'大于等于',num_b)
  7. else:
  8. print(num_a,'小于',num_b) '''
  1. #pass语句,什么都不做,只是一个占位符,用到需要写语句的地方
  2. answer=input('你是会员吗?y/n')
  3. if answer=='y':
  4. pass
  5. else:
  6. pass

 1.range()函数的使用

2.while循环

2.for-in循环

3.break、continue与else语句

5.嵌套循环

 

 

 

 

 

  1. '''从键盘输入密码,最多录入3次,如果正确就结束循环'''
  2. for item in range(3):
  3. pwd=input('请输入密码')
  4. if pwd=='888':
  5. print('密码正确')
  6. break
  7. else:
  8. print('密码不正确')

 

 

 

  1. for i in range(1,4):#行表,执行三次,一次是一行
  2. for j in range(1,5):
  3. print('*',end='\t') #不换行输出
  4. print() #打行
  1. for i in range(1,10): #行数
  2. for j in range(1,i+1):
  3. print(j,'*',i,'=',i*j,end='\t')
  4. print()
  5. #99乘法表
  1. 1 * 1 = 1
  2. 1 * 2 = 2 2 * 2 = 4
  3. 1 * 3 = 3 2 * 3 = 6 3 * 3 = 9
  4. 1 * 4 = 4 2 * 4 = 8 3 * 4 = 12 4 * 4 = 16
  5. 1 * 5 = 5 2 * 5 = 10 3 * 5 = 15 4 * 5 = 20 5 * 5 = 25
  6. 1 * 6 = 6 2 * 6 = 12 3 * 6 = 18 4 * 6 = 24 5 * 6 = 30 6 * 6 = 36
  7. 1 * 7 = 7 2 * 7 = 14 3 * 7 = 21 4 * 7 = 28 5 * 7 = 35 6 * 7 = 42 7 * 7 = 49
  8. 1 * 8 = 8 2 * 8 = 16 3 * 8 = 24 4 * 8 = 32 5 * 8 = 40 6 * 8 = 48 7 * 8 = 56 8 * 8 = 64
  9. 1 * 9 = 9 2 * 9 = 18 3 * 9 = 27 4 * 9 = 36 5 * 9 = 45 6 * 9 = 54 7 * 9 = 63 8 * 9 = 72 9 * 9 = 81

 

 

 

  1. lst=['hello','world',98]
  2. print(lst)
  3. print(lst[0])
  4. 输出['hello', 'world', 98]
  5. hello

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/161012
推荐阅读
相关标签
  

闽ICP备14008679号