python作业
文章平均质量分 78
guo_lx
这个作者很懒,什么都没留下…
展开
-
第一周作业
1、浏览Python主页Python主页:点击打开链接 可以看到Python官网分为7个主要板块,其中的Documentation板块中有各种各样的学习资料、教学视频,为初学者提供了便利。学习之路上单兵作战的效率总是低于团队合作,Community中的各种学习论坛、兴趣小组为Python爱好者们提供了交流和共享的平台。2、学习目标 书上有一道问题:“假设你已经成为一名Python编程高...原创 2018-03-11 19:52:53 · 246 阅读 · 0 评论 -
第十二周作业 11 Matplotlib
Exercise 11.1: Plotting a functionPlot the functionf(x) = sin^2 (x − 2) e ^(−x2) over the interval [0,2]. Add proper axis labels, a title, etc.import numpy as npfrom matplotlib import pyplot as plt...原创 2018-06-10 17:40:22 · 279 阅读 · 0 评论 -
第十一周作业 9 Numpy
Generate matrices A, with random Gaussian entries, B, a Toeplitz matrix, where A∈ R^n x m, and B ∈ R^m x m, for n = 200, m = 500首先使用numpy.random.mormal生成A 函数语法: numpy.random.normal(loc, sca...原创 2018-06-10 13:10:11 · 205 阅读 · 0 评论 -
第六周作业(11章)
11-1def city_functions(city, country): msg = city.capitalize() + ', ' + country.capitalize() return msg#coding:gbkimport unittestfrom city import city_functionsclass CityTestCase(unittest.TestCa...原创 2018-06-09 21:52:52 · 194 阅读 · 0 评论 -
第五周作业(9,10章)
9-1~9-2#coding:gbk#9-1 餐馆class Restaurant(): def __init__(self, restaurant_name, cuisine_type): self.restaurant_name = restaurant_name self.cuisine_type = cuisine_type def describe_resta...原创 2018-06-09 10:34:30 · 217 阅读 · 0 评论 -
第十三周作业 10 Scipy
Exercise 10.1: Least squaresGenerate matrix A ∈ R^m×n with m > n. Also generate some vector b ∈ R^m . Now find x = argmin x ||Ax − b||_2 .Print the norm of the residual.import numpy as npimport sc...原创 2018-06-12 17:29:52 · 186 阅读 · 0 评论 -
第八、九周作业 (leetcode数组题库选做)
11. 盛最多水的容器题目 :给定 n 个非负整数 a1,a2,...,an,每个数代表坐标中的一个点 (i, ai) 。画 n 条垂直线,使得垂直线 i 的两个端点分别为 (i, ai) 和 (i, 0)。找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。注意:你不能倾斜容器,n 至少是2。分析: 从两端的两直线开始向中间逼近最大容量。假设最左端 i,最右端的为 j: ...原创 2018-05-01 02:07:10 · 147 阅读 · 0 评论 -
第四周作业(7,8章)
7-1#coding:gbk#7-1汽车租赁car = input("你想租什么牌子的汽车:")print("我给你找找有没有" + car)7-2#coding:gbk#7-2餐馆订位num_of_people = input("有多少人在用餐:")if int(num_of_people) > 8: print("没有空位了。")else: print("还有空位...原创 2018-03-24 22:06:46 · 178 阅读 · 0 评论 -
第三周作业(书本5,6章)
5-1#coding:gbk#5-1条件测试a = 1print('Is a == 2? I predict False')print(a == 2)print('Is a == 1? I predict True')print(a == 1)5-2#coding:gbk#5-2更多的条件测试a = 'Johnny' b = 'Timmy'print('If a == b...原创 2018-03-24 22:02:42 · 265 阅读 · 0 评论 -
第二周作业(书本3,4章)
3-1#coding:gbk#3-1姓名,3-2问候语names = ['Johnny', 'Tom', 'Jerry', 'Timmy']for name in names: #print(name) print('Hello ' + name + '!') 3-4~3-7#coding:gbk#3-4嘉宾名单guests = ['Johnny', 'Tom', 'Jerr...原创 2018-03-24 21:57:09 · 140 阅读 · 0 评论 -
第十四周作业 jupyter
Anscombe's quartet comprises of four datasets, and is rather famous. Why?You'll find out in this exercise.Anscombe’s QuartetIIIIIIIVxyxyxyxy10.08.0410.09.1410.07.468.06.588.06.958.08.148.06.778.05.761...原创 2018-06-19 21:01:00 · 474 阅读 · 0 评论