Skip to content

Commit d840cd7

Browse files
author
Angel
committed
add homework2/A10466d
1 parent 3ff3061 commit d840cd7

21 files changed

+652
-0
lines changed
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#!/usr/bin/python
2+
#-*- coding: utf-8 -*-
3+
# @author: anqi
4+
5+
def main():
6+
who = '安琪的老妈'
7+
good_price = 5
8+
good_description = "西双版纳大白菜"
9+
10+
is_cheap= False
11+
reasonable_price = 6
12+
#t = reasonable_price-good_price
13+
buy_amount = 2
14+
15+
print "%s上街看到了%s,卖%d元/斤" %(who, good_description, good_price)
16+
17+
if good_price <= reasonable_price:
18+
print '她认为便宜'
19+
is_cheap = True
20+
buy_amount=2+(reasonable_price-good_price)
21+
if buy_amount>4:
22+
buy_amount=4
23+
print "她买了%d斤"%(buy_amount)
24+
else:
25+
print '她认为贵了 '
26+
is_cheap = False
27+
print '她并没有买,扬长而去'
28+
29+
if __name__ == '__main__':
30+
main()
31+
32+
#1 number是数字,string是字符串,boolean是逻辑判断
33+
#2 if 判断是否符合条件,如果符合,运行下一步
34+
#3 帮助具象化判断是否符合条件
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: Anqi
4+
import turtle
5+
6+
def main():
7+
windows = turtle.Screen()
8+
#设置背景
9+
windows.bgcolor('grey')
10+
#生成一个黄色乌龟
11+
bran = turtle.Turtle()
12+
bran.shape('turtle')
13+
bran.color('pink')
14+
#设置速度
15+
bran.speed(4)
16+
#走几步
17+
for i in range(1,100):
18+
bran.forward(100)
19+
bran.right(90)
20+
bran.forward(100)
21+
bran.right(90)
22+
bran.forward(100)
23+
bran.right(90)
24+
bran.forward(100)
25+
bran.right(90)
26+
#停下来
27+
28+
if __name__ == '__main__':
29+
main()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: xxx
4+
import time
5+
6+
def main():
7+
ticks=time.time()
8+
print ticks
9+
localtime=time.asctime(time.localtime(time.time()))
10+
print localtime
11+
print time.strftime("%Y-%m-%d%H:%M:%S",time.localtime())
12+
import calendar
13+
cal=calendar.month(2017,6)
14+
print cal
15+
print calendar.isleap(2017)
16+
17+
18+
19+
20+
if __name__ == '__main__':
21+
main()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: Anqi
4+
import turtle
5+
6+
def main():
7+
turtle.pencolor("brown")
8+
turtle.home()
9+
turtle.circle(60)
10+
turtle.circle(120, 180) # draw a semicircle
11+
turtle.circle(120, 180)
12+
13+
14+
if __name__ == '__main__':
15+
main()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: Anqi
4+
class cat():
5+
def __init__(self, name,age):
6+
self.name=name
7+
self.age=age
8+
9+
def speak(self):
10+
print'名叫 %s 的猫 %s 岁会说话了' %(self.name,self.age)
11+
12+
def main():
13+
miao=cat('miao','3')
14+
miao.speak()
15+
16+
if __name__ == '__main__':
17+
main()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
class Car():
4+
def __init__(self, date, time, name):
5+
self.date = date
6+
self.time = time
7+
self.name = name
8+
def be_drived(self, distance):
9+
speed = float(distance)/self.time
10+
print '%s老妈骑着%s去买菜,平均速度为%skm/h' % (self.date,self.name,speed)
11+
def main():
12+
car1 = Car('周一',0.5,'电动车')
13+
car1.be_drived(20)
14+
car2 = Car('周二',2,'自行车')
15+
car2.be_drived(20)
16+
car3 = Car('周三',0.6,'电动车')
17+
car3.be_drived(20)
18+
if __name__ == '__main__':
19+
main()
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: Anqi
4+
def main():
5+
#01.int
6+
apple_number = 5
7+
apple_price = 6.3
8+
pie_number = 6
9+
pie_price = 7.2
10+
11+
#02. * /
12+
apple_total_price = apple_number * apple_price
13+
pie_total_price = pie_number * pie_price
14+
15+
#03. try to explain what's float
16+
print 'pie cost %d ' % (pie_total_price) #取整数
17+
print 'pie cost %g ' % (pie_total_price) #保留1位
18+
print 'pie cost %0.2f ' % (pie_total_price) #保留2位
19+
20+
#04. ** 次方
21+
number = 2**3
22+
print 'number = %d' % (number)
23+
24+
#05. what else?
25+
# 在 python简明教程中找到第 34 页,然后搞懂所有的符号~
26+
# 每个符号在下面测试一下 除了 << >> ^ ~ 几个不用理解,之后会讲
27+
# 不用理解优先级,只用记住一句:括号里面的最先计算
28+
#如:
29+
#print 'test: %d' % (1 != 2)
30+
#print 'test: %d' % (1 >= 2)
31+
#if 1:
32+
#print 'goog'
33+
#if 0:
34+
#print 'xxx'
35+
#if(2 != 2):
36+
#print 'wweewe we w'
37+
#请开始你的表演
38+
print 2+3
39+
print 4.5-3.2
40+
print 3*4
41+
print 5**2
42+
print 4//3
43+
print 4%3
44+
x=3
45+
y=5
46+
47+
if x <= y:
48+
print "她买了3斤"
49+
50+
if __name__ == '__main__':
51+
main()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: Anqi
4+
def talk_with_daddy(is_cheap3, buy_amount3):
5+
if is_cheap3:
6+
print '老妈回到家里,跟老爸说:“今天去买菜,价格不贵,买了 %d 斤”。' %(buy_amount3)
7+
else:
8+
print '老妈回到家里,跟老爸说:"今天去买菜,菜好贵,没买"。'
9+
10+
def record_account(is_cheap3, good_price2, buy_amount3):
11+
if is_cheap3:
12+
print '老妈在小本子上记了买菜花销%s元'%(good_price2*buy_amount3)
13+
else:
14+
print '老妈没有花钱买菜'
15+
16+
def buybuybuy():
17+
good_price=3
18+
buy_amount=2
19+
reasonable_price=5
20+
21+
who="安琪的老妈"
22+
good_description="西双版纳大白菜"
23+
24+
is_cheap=False
25+
print "%s上街看到了%s,卖%d元/斤"%(who, good_description, good_price)
26+
27+
if good_price<=reasonable_price:
28+
print "她认为便宜"
29+
is_cheap=True
30+
buy_amount=2+(reasonable_price-good_price)
31+
if buy_amount>4:
32+
buy_amount=4
33+
print "她买了%d斤"%(buy_amount)
34+
else:
35+
print '她认为贵了 '
36+
is_cheap = False
37+
print '她并没有买,扬长而去'
38+
39+
return is_cheap, buy_amount, good_price
40+
41+
def main():
42+
is_cheap2, buy_amount2, good_price2 = buybuybuy()
43+
talk_with_daddy(is_cheap2, buy_amount2)
44+
record_account(is_cheap2, buy_amount2, good_price2)
45+
if __name__ == '__main__':
46+
main()
47+
48+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: Anqi
4+
def first_step():
5+
lst = ['白菜','萝卜','西红柿','甲鱼','龙虾','生姜','白芍','西柚','牛肉','水饺']
6+
print '老妈来到菜市场'
7+
return lst
8+
9+
def print_list(lst):
10+
index=0
11+
for index,lst_item in enumerate(lst):
12+
if index%2 == 0:
13+
print '老妈看到%s,买了%d斤,老妈继续逛' % (lst_item, index+1)
14+
else:
15+
print '老妈看到%s,不买,老妈继续逛'% (lst_item)
16+
17+
def main():
18+
lst = first_step()
19+
print_list(lst)
20+
if __name__ == '__main__':
21+
main()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: Anqi
4+
def first_step():
5+
lst = ['白菜','萝卜','西红柿','甲鱼','龙虾','生姜','白芍','西柚','牛肉','水饺']
6+
print '老妈来到菜市场'
7+
lst2 = lst[5:10]
8+
return lst2
9+
10+
def print_list(lst2):
11+
index=0
12+
for index,lst2_item in enumerate(lst2):
13+
if index%2 == 0:
14+
print '老妈看到%s,买了%d斤,老妈继续逛' % (lst2_item, index+1)
15+
else:
16+
print '老妈看到%s,不买,老妈继续逛'% (lst2_item)
17+
18+
def main():
19+
lst2 = first_step()
20+
print_list(lst2)
21+
if __name__ == '__main__':
22+
main()
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
# @author: xxx
4+
5+
#作业1:对照 day9 sample-code 打一遍代码
6+
#
7+
#作业2: (选做)模拟下面的过程,用今天学到的知识
8+
#【场景模拟】
9+
#
10+
# 老爸在看一本英文书,他旁边有一个词典,但是只有三个词的解释
11+
# abandon “to give up to the control or influence of another person or agent”
12+
# abase “to lower in rank, office, prestige, or esteem ”
13+
# abash “to destroy the self-possession or self-confidence of ”
14+
#
15+
# 老爸先查了一个单词 'etiquette' 没有查到
16+
# 老爸怒了,把含有 'abandon' 一页的单词撕掉了
17+
# 然后老爸又差了一个单词 'abase' 得到了解释
18+
# 老爸很开心,有把 'abandon' 加入到了字典里
19+
#
20+
def homework1():
21+
dictionary={
22+
'good':'of a favourable chacter', #不要忘记逗号
23+
'none':'not any such thing or person'
24+
}
25+
26+
print len(dictionary)
27+
print dictionary.keys()
28+
print dictionary.values()
29+
print dictionary.has_key('good') #圆括号
30+
dictionary['bad']='no good' #方括号
31+
dictionary['bad']='failing to reach an acceptable standard'
32+
del dictionary['bad']
33+
if dictionary.has_key('none'):
34+
print dictionary['good']
35+
for key in dictionary.keys():
36+
print key
37+
print dictionary[key]
38+
def homework2():
39+
print '老爸在看一本英文书'
40+
dictionary={
41+
'abandon':'to give up to the control or influence of another person or agent',
42+
'abase':'to lower in rank, office, prestige, or esteem',
43+
'abash':'to destroy the self-possession or self-confidence of'
44+
}
45+
if dictionary.has_key('etiquette'):
46+
print dictionary['etiquette']
47+
del dictionary['abandon']
48+
if dictionary.has_key('abase'):
49+
print dictionary['abase']
50+
dictionary['abandon']='to give up to the control or influence of another person or agent'
51+
52+
if __name__ == '__main__':
53+
homework1()
54+
homework2()

0 commit comments

Comments
 (0)