day2总结

2018-08-21  本文已影响0人  DoubleKou

1.python基础语法

1.注释

注释只是对代码进行解释说明的文字。
1.单行注释就是在注释文字前加#
示例:

 #单行注释

2.多行注释
示例:

'''
这就是多行注释
'''

2.标识符

专门用来命名的
用字母下划线组成,大小写字母敏感。python3以后版本可以包含中文;不能用关键字

import keyword
print(keyword.kwlist)

关键字如下:

'False', 'None', 'True', 'and', 'as', 
'assert', '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'

3.行与缩进

2.python中的基本类型

1.数字相关:int(整型) float(浮点型) complex(复数型)
2.bool:True false
3.str(字符串) list(列表) dict(字典) tuple(元祖)
4.set(集合) function(函数) bytes(字节)

3.python中的变量

python是动态语言,声明变量就是在内存中开辟空间存储数据。
如何声明变量

变量名=值(变量名不能是关键字)

注释:python声明变量时不需要确定类型
python中每条语句可以不用分号,但是一行中写多条语句需要分号隔开
列如:

num1=10;num2=100

同时声明两个变量并且赋予同样的值,以及打印多个值

str1=str2='abc'
print(str1,str2)

id函数
用来查看变量地址

a=10
b=10
print(id(a),id(b))
num1=10
num2=-10

float(浮点型)

bool1=True
bool2=False

type函数
type()内置函数--或去括号中数据的类型

num3=0.11
print(type(num3))

4.python中的运算符

number=3512
print(number%1000//100)
print(number//100%10)
print(10>20)
print(10<20)
print(10=20)

示例:

print(True and True)
print(True and False)

例题:1.要求学习成绩的绩点是3.5以上,并且操评分不低于90

score=4.0
score=90
print(score>3.5 and score>=90)
a=10
b=30
c=a+b
d=a>10
print(d)
print(10*20+(30<40)/2-100)
print(2*2**3)

5.python中的进制

计算机中常用的进制有(二进制,八进制,十进制,十六进制)

进制 基数 转化方法 示例
二进制 0--9 逢10进1 8(10)->100(2)
八进制 0-7 逢8进1 123(8)->001010011(2)
十六进制 0-9 a~f 逢16进1 20(16)->32(10)

6.常用的快捷键

ctrl+/ 注释/取消注释
      
      ctrl+s 保存
      ctrl+c/v  复制/粘贴
      ctrl+x    剪切
      ctrl+b    编译执行
      ctrl+r    编译执行(其他工具里面叫编译)
      ctrl+a/z  全选/撤销
      ctrl+shift+z  反撤销
      ctrl+f     搜索框
      ctrl+n      新建文件

python环境进制间的转换

print(0b11)
print(bin(20))
print(0o11)
print(0x20)
print(oct(20))
上一篇下一篇

猜你喜欢

热点阅读