Autism
10
13
Python Python
一.面向对象的初始​ 1.类 : 具有相同属性和技能的一类事物 ​ 2.对象 : 具体类的表现, 具体的实实在在的一个实例 ​ class Person: ''' 类体:两部分: 变量部分
2020-10-13 二哈君
03
09
25
Python Python
一.冒泡排序# 冒泡排序 lst = [11, 22, 35, 6, 2] for i in range(len(lst)): i = 0 while i < len(lst) - 1: if lst[
2020-09-25 二哈君
22
Python Python
一、函数的定义​ 对代码块和功能的封装和定义 二、函数的定义语法​ def 函数名(): 函数体 def yue(): print("123") 函数的调用:使用函数名可以调用函数,写法
2020-09-22 二哈君
20
Python文件操作 Python文件操作
文件操作 1.初始文件操作 2.只读(r,rb) 3.只写(w,wb) 4.追加(a,ab) 5.r+读写 6.w+写读 7.a+写读(追加读写) 8.其他操作方法 9.文件的修改以及另一种打开文件句柄的方式 一.初始文件操作
2020-09-20 二哈君
08
31
31
Python Python
1. 计算机是什么 基本组成: 主板+cpu+内存 cpu: 主频, 核数(16) 内存:大小(8G, 16G, 32G) 型号:
2020-08-31 二哈君
30
Hello World Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hex
2020-08-30 二哈君
2 / 2