自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

16337137的博客

用于学习python

  • 博客(22)
  • 收藏
  • 关注

原创 第十五周作业 —— sklearn

Train the algorithmsGaussianNBiris = datasets.load_iris()dataset = datasets.make_classification(n_samples = 1000, n_features= 10, n_informative= 2, n_redundant = 2, n_repeated = 0, n_classe...

2018-06-19 16:52:03 227

原创 第十四周

Part1For each of the four datasets...Compute the mean and variance of both x and yCompute the correlation coefficient between x and yCompute the linear regression line: y=β0+β1x+ϵy=β0+β1x+ϵ (hint: use...

2018-06-12 19:33:29 159

原创 第十三周作业 ——Scipy

10.1代码展示输出结果10.2代码展示输出结果10.3代码展示输出结果

2018-06-05 18:50:21 160

原创 第十二周作业

Matplotbib11.1代码:结果:11.2代码:结果11.3代码结果:

2018-05-29 11:39:01 155

原创 第十一周作业

9.1代码输出结果:9.2代码输出结果9.3代码输出结果9.4代码输出结果9.5代码输出结果由结果可知随着n的增大,最大奇异值增大,随着p的增大,最大奇异值减少9.6代码输出结果...

2018-05-20 10:57:36 121

原创 第九周第二次作业

题目:36. Valid SudokuDetermine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated according to the following rules:Each row must contain the digits 1-9 without repetition.Each co...

2018-05-03 11:32:54 164

原创 第九周第一次作业

题目:41. First Missing PositiveGiven an unsorted integer array, find the smallest missing positive integer.算法思路:    新建另一个列表(设为mynums),将列表长度设置为给定列表(设为nums)长度加一,并且设置列表中的元素值与该元素值索引号相同,然后遍历nums, 如果 nums[ind...

2018-05-02 19:58:01 162

原创 第八周第二次作业

选题:42. Trapping Rain WaterGiven n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.The above elevation map ...

2018-04-27 23:18:03 150

原创 第八周第一次作业

题目:11. Contaier With Most Water题目要求:Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i...

2018-04-24 11:15:38 156

原创 第二周第二次作业

12-1蓝色天空代码:import pygameimport syspygame.init()screen = pygame.display.set_mode((1280,720))while True: for event in pygame.event.get(): if event.type == pygame.QUIT: sys.exit() ...

2018-04-11 20:40:47 212

原创 第六周第一次作业

11-1城市和国家:代码函数:def city_country(city, country): res = city + "," + country return res 测试函数:from test import city_countryimport unittestclass City_countryTestCase(unittest.TestCase): def te...

2018-04-09 22:45:43 101

原创 第五周第二次作业

10-3 访客:代码:name = input("Pleas enter your name.")name_file = open("guest.txt", 'a+')name_file.write(name + '\n')输入:输出结果:10-4访客名单:代码:name_file = open("guest.txt", 'a+')while True: name = input("Plea...

2018-04-04 19:50:27 138

原创 第五周第一次作业

9-1餐馆:class Restaurant(): def __init__(self, restaurant_name, cuisine_type): self.restaurant_name = restaurant_name self.cuisine_type = cuisine_type def describe_restaurant(self): ...

2018-04-02 11:08:40 205

原创 第四周第二次作业

8-1消息:def display_message(): print("I learned function in this chapter")display_message()输出结果:8-2喜欢的图书:def favorite_book(title): print("One of my favorite books is " + title)favorite_book("Alice...

2018-03-28 19:43:36 136

原创 第四周第一次作业

7-1 汽车租赁:message = input("What kind of car do you want?\n")print("Let me see if I can find you a " + message)输出结果:7-3 10的整数倍num = input("Input a num an I will tell you whether it can be divided by ten...

2018-03-26 19:28:35 117

原创 第三周第二次作业

6-1 人:Myfriend = {'first_name': "first",'last_name': "last", "age": 3, "city":"GuangZhou"}for index in Myfriend: print(index + ':', Myfriend[index])输出结果:6-7人:Myfriend = {'first_name': "first",

2018-03-21 23:00:46 118

原创 第三周第一次作业

5 -7 喜欢的水果:favorite_fruits = ["apple", "banana","orange", "watermelon", "strawberry"]if "apple" in favorite_fruits: print("You realy like apples!" )if "banana" in favorite_f

2018-03-19 11:35:51 160

原创 第二周第二次作业

4-3 数到20:for num in range(1,21): print(num)输出结果4-6 奇数:for num in range(1,21,2): print(num)输出结果:4-8 立方:list = []for num in range(1,11): list.append(num**3)for num2 in list: print(num2)输出结果:...

2018-03-15 10:51:03 103

原创 第二周第一次作业

3-1 姓名:namelist = ['name_one', 'name_two', 'name_three']for inx in namelist: print(inx)输出结果:3-2 问候语:namelist = ['name_one', 'name_two', 'name_three']for inx in namelist: print(inx.title() + ", I...

2018-03-13 13:16:57 108

原创 第一周第二次作业

练习2-1message = "Hello,Python!"print(message)输出结果:练习2-4name = "IamName"print(name.upper())print(name.lower())print(name.title())输出结果:练习 2-9num = 110message = "I love " + str(num) + " !"print(message)输出...

2018-03-08 23:06:29 104

原创 第一周第一次作业——如果我成为了一名python高手……

    python的应用范围极广,如果能成为一名Python高手,我想我有很多事情想做,其中最想做的便是制作一个游戏    制作一个RPG类型的游戏,里面有各种职业,如:能够保护全队的战士,以技巧为主的盗贼,拥有强力输出的法师,能够治愈全队的牧师。    会有各种多人副本,需要各个职业的配合,里面可以掉落装备。    等级有1-99级。    可以养宠物。    游戏的剧情是根据自己的想象来创作...

2018-03-07 23:10:02 185

原创 第一周第一次作业——浏览Python主页后的发现和收获

    进入Python主页看到的第一眼便是用Python写的代码,看到这些简洁的代码,我感到无比的震惊——竟然还有如此简洁漂亮的高级语言???只学过c/c++的我瞬间对Python产生了兴趣。    在Python主页逛了一圈后,我发现了有许多的工作应聘发布在主页上,这说明市场是需要Python的,而且量大,由此可知,python的应用前景一片光明。作为一门“胶水语言”——很轻松的联结其他语言模...

2018-03-07 23:00:29 195

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除