Ielts小班课学习-1

雅思听力(今日重点:地图题)

  • 常见单词

所在位置 形 状 交汇处 最高点 底 点 人行横道
entrance diamond(菱形) intersection top bottom pavement
access oval(椭圆) junction peak base sidewalk
entry gate square crossing summit foot pedestrian crossing
lobby circle cross-road climax lowest point
reception block rectangular cross-street crest
information centre triangular corner
car park

雅思口语(回顾第一题,发音练习)

  • 口语表达短语
  1. over the moon --> extremely happy/pleased

  2. an arm and a leg --> very expensive
    eg. It cost me an arm and a leg,....

  3. a blessing in disguise --> 因祸得福

  4. (feel/be) down in the dumps --> sad

  5. the in thing --> something fashionable


雅思写作(大作文:报告类题目)


大作文所有题型 问法
利弊分析题 1.Do the advantages outweigh disadvantages?
2.Is this a positive or negative development?
是否同意 To what extent do you agree or disagree?
报告类题目 问题将在下面给出
双边讨论题 Discuss both views and give your own opinion.

  • 报告类题目通过题目最后的两个问句(引起的问题?如何解决?)来判断,其次思考以下三个问题

What are the reasons?
What can be done to solve it?
What are the effects of it?

  • 报告类题目作文结构:
  1. 开头段(可以较简洁):背景句、改写句、观点句(例如:在下面的文章中将介绍问题和解决方法)
  2. 主体段(3段左右):引起的问题(论点+解释论句–因果、对比、举例)
  3. 总结段:没有新增内容,关于总结的短语+观点+回答

报告类大作文结构1 报告类大作文结构2
开头段 开头段
原因1+论证 原因1
原因2+论证 解决方案1
(原因3+论证) 原因2
解决方案1+论证 解决方案2
解决方案2+论证 原因3
(解决方案3+论证) 解决方案3
结尾段 结尾段

  • 以下为一篇例文中的结构
  • In the following essay,I will discuss some of the problems this causes and also offer some solutions.
  • One of the main problems ...
  • Perhaps the most significant problems ...
  • I believe the solution to these problems ... First .. Secondly,and perhaps more importantly ... consequenly ...
  • In conclusion ...

生词记忆


单词 释义 单词 释义
jog 慢跑 corridor 房间走廊
auditorium 礼堂、观众席 marsh 沼泽、湿地
stables 牲畜棚 row of buliding 一排建筑
confidentiality 机密 naval 海军的
bump into 撞见 issue 发行,分发
back then 在那时 haze 雾霾
respect 方面 cosmetic 化妆品的
water sprinkling 泼水节 lantern festival 元宵节
dragon boat fastival 端午节

python学习-2

函数的各种参数类型,廖雪峰的博客

今天主要学习了函数,函数参量的种类和一些注意事项

  • From xx import xxx 可以从xx.py文件中引用函数xxx(…)

  • isinstance(object, classinfo) object-实例对象、classinfo-可以是直接或间接类名、基本类型或者由它们组成的元组;相比于type(),建议使用isinstance()

  • x**n 变量的高次幂的表示形式

  • def f2(a, b, c=0, *, d, **kw): 函数的参数组合,注意顺序;此外,对于任意函数,都可以通过类似func(args, *kw)的形式调用它,无论它的参数是如何定义


  • 递归函数,思路很重要,自己的理解能力还是太弱了,加强锻炼吧!

递归函数的经典问题:汉诺塔;例程函数如下

1
2
3
4
5
6
7
8
9
def hanoi(n,a,b,c):
# 当n为1时 (递归基础)
if n == 1:
print(a, '-->', c) # 将A柱最底层的圆盘移动到C柱
# 当n大于1时
else:
hanoi(n-1, a, c, b) # 借助C柱,将n-1个圆盘从A柱移动到B柱
print(a, '-->', c) # 将A柱最底层的圆盘移动到C柱
hanoi(n-1, b, a, c) # 借助A柱,将n-1个圆盘从B柱移动到C柱

  • range()函数用法 range(start, stop[, step]) 基本用于for循环,生成列表或元组的一般表达形式list(range(x,x,x))tuple(range(x,x,x))

Python!

python学习目前进度,廖雪峰的教程

  • 本来创建博客的想法是想记录学习python的过程,结果一个hexo博客花了我四五天的时间,不过还好搞出来了,有点小成就感,好了现在继续学习Python!!gogogo

以下是最新写的一个非常简单的成绩查询小程序,注意,有失败的地方已经标出

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#2020.3.9
#学习python第二个小程序
#计算今年成绩较去年的变化
n=1
m=1

while n==1:
#输入若干信息
name=input('请输入学生姓名:');print('\n')
s1=input('请输入%s去年的成绩:'%name)

while m==1:#这样的方法失败了,目前无法解决成绩输入不是数字的重复正确输入问题
if type(s1)==float or type(s1)==int:
if s1>=0:
m=0
s2=float(input('请输入%s今年的成绩:'%name));print('\n')
else:
s1=input('输入失败,请正确输入%s去年的成绩:'%name)
else:
s1=input('输入失败,请正确输入%s去年的成绩:'%name)

else:

#判断成绩走向并计算变化率
if s2>s1:
rate=(s2-s1)/s2*100
print('%s同学你好,祝贺你进步了,成绩增长率为 %.2f%%\n'%(name,rate))

elif s1==s2:
print('%s同学你好,不错,成绩保持住了\n'%name)
rate=0.00

else:
rate=(s1-s2)/s2*100
print('%s同学你好,很遗憾你退步了,成绩下降率为 %.2f%%\n'%(name,rate))

n=int(input('如果希望继续查询,请输入1,否则输入其他任意键退出'))

else:
#结尾
print('欢迎再次使用,再见')
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×