2018-12-3-今日总结

## 1. 今日概述 星期一, 2018年12月3日 发现自己存在一个缺点,就是规划与执行之间存在代沟,简言之,就是执行力不行。没有分清主次关系,有一种抓住了芝麻的感觉,西瓜并没有。

2. 英语计划

2.1 学术词汇

resolve
address
abstract
assign
aggregate
isolate
socialize
dissociate
associate
activate

2.2 听力词汇

population
have trouble with
assignment
due
hold
library
borrow
spend time on
medical
compassionate
properly
as long as
reference
submit
journal
article
in the list
expect
deal with
methodology
relevant
essential
bother
graph
bar
photocopy
indicate
disturb
quieter
proximity
refer to
property
fix
tenant
attractive
neighborhood

2.3 口语练习

【英语口语练习系列-C26-广告-人际关系-辨别物体-如果】

3. 学术科研

文献1:Corrosion damage tolerance methodology for C/KC-135 fuselage structure
文献1主要讲解了腐蚀损伤容限方法
文献2:Corrosion Sensor Development for Condition-Based Maintenance of Aircraft
文献2主要讲解了腐蚀传感器的发展,这有利于腐蚀损伤的状态监测。

4. 编程能力

4.1 面向对象

python中一切皆对象

x = 28
type(x)

y = 28.9
type(y)

def f(x):
    return x + 1
type(f)

import math
type(math)

ls = [1, 2, 3, 4]
type(ls)

综上:数字、浮点数、函数、模块、列表均属对象

4.2 文件操作

文件的作用是储存信息与信息交互的作用,文件分为文本文件和二进制文件。Python中内置了文件对象,采用open()函数打开,其结果为返回一个可以迭代的文件对象

5. 有趣儿

5.1 日常生活

5.2 闲聊

好像自己要开始新的计划了,规范自己的学习任务。
beauty images

5.3 HTML和css学习网站

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture

6. 反思与总结

经过这段时间的日记记录,主要有一下几点:

  1. 需要抽空翻看自己的日常总结一次提醒自己需要改善自己
  2. 需要认清自己的错误之处
  3. 需要及时改进自己的日常生活
  4. 需要花更少的时间,学习更多的新知识
原文地址:https://www.cnblogs.com/brightyuxl/p/10061793.html