- 博客(14)
- 收藏
- 关注
原创 Android Studio查看源码时报红
原因:出于安全或其他什么原因,编译完成的android.jar会将某些方法和类隐藏,AS在jar中找不到这些类和方法,所以报红解决:下载相应版本的android-hidden-api,替换掉原来的android.jar, 路径一般为C:\Users\Administrator\AppData\Local\Android\android-sdk\platforms\android-27注意:...
2019-07-17 17:43:02 1133
原创 [python] join()函数
'sep'.join(seq)1、功能: 将字符串、元组、列表中的元素以特定的分隔符链接成起来。 sep: 分隔符,可以为空;'sep'.join(seq)1、功能: 将字符串、元组、列表中的元素以特定的分隔符链接成起来。 sep: 分隔符,可以为空; seq: 需要链接的元素序列、字符串、元组、字典。...
2019-07-17 13:31:39 108
原创 第十四周作业 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
原创 第十三周作业 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 187
原创 第十二周作业 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
原创 第十一周作业 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
原创 [python]文件的写入、读取和附加
来源:Python open() 函数 | 菜鸟教程python open() 函数用于打开一个文件,创建一个file对象,相关的方法才可以调用它进行读写。更多文件操作可参考:Python 文件I/O。函数语法open(name[, mode[, buffering]])(name[, mode[, buffering]])参数说明: name : 一个...
2018-06-10 11:25:22 1709
原创 第六周作业(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 195
原创 第五周作业(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
原创 第八、九周作业 (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
原创 第四周作业(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
原创 第三周作业(书本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
原创 第二周作业(书本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 141
原创 第一周作业
1、浏览Python主页Python主页:点击打开链接 可以看到Python官网分为7个主要板块,其中的Documentation板块中有各种各样的学习资料、教学视频,为初学者提供了便利。学习之路上单兵作战的效率总是低于团队合作,Community中的各种学习论坛、兴趣小组为Python爱好者们提供了交流和共享的平台。2、学习目标 书上有一道问题:“假设你已经成为一名Python编程高...
2018-03-11 19:52:53 246
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人