Python
文章平均质量分 66
未定义的薛定谔
这个作者很懒,什么都没留下…
展开
-
Python 学习笔记
突然想学python,边写边学对象类型两种情况,字符串用‘’或”“括起来,其他的不用,python里面不需要定义变量,直接赋值即可ch='abc'ch="abc"a=5强制类型转换int('123')=123str(123)='123'float('123')=123.0float(123)=123.0bool(1)=Turebool(0)=False运算符和C区别不大 需要用到相关原创 2017-01-06 21:33:03 · 284 阅读 · 0 评论 -
Python-Scipy(第十四周作业)
Exercise 10.1: Least squares题目要求给出矩阵A,向量b,用最小二乘法求x,并求出残差的模 代码:import scipyimport scipy.spatialm = 8n = 7A = scipy.random.rand(m, n) * scipy.random.randint(1, 10)b = scipy.random.rand(m)...原创 2018-06-05 12:58:19 · 263 阅读 · 0 评论 -
Python-Jupyter Notebook(第十五周作业)
Anscombe’s quartetPart 1For 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=β...原创 2018-06-11 17:24:19 · 626 阅读 · 0 评论 -
Python-Matplotlib(第十三作业)
Exercise 11.1: Plotting a function Plot the function代码:import matplotlib.pyplot as pltimport numpy as npx=np.linspace(0,2,500)y=pow(np.sin(x-2),2)*np.exp(-np.power(x,2))plt.plot(x,y)pl...原创 2018-05-27 13:50:10 · 259 阅读 · 0 评论 -
Python-Numpy(第十二周作业)
Generate matrices A, with random Gaussian entries, B, a Toeplitz matrix, where A∈Rn∗mA∈Rn∗mA ∈ R^{n*m} and B∈Rm∗mB∈Rm∗mB ∈ R^{m*m}, for n=200n=200n = 200, m=500m=500m = 500.import numpy as npimp...原创 2018-05-21 23:11:02 · 303 阅读 · 0 评论 -
Python-Leetcode(第八,九周作业)
11. Container With Most WaterDescription 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 ...原创 2018-05-02 15:08:55 · 247 阅读 · 0 评论 -
Python第十一章练习题 (第六周作业)
11-1 城市和国家 :编写一个函数,它接受两个形参:一个城市名和一个国家名。这个函数返回一个格式为City, Country 的字符串,如Santiago, Chile 。将 这个函数存储在一个名为city_functions.py的模块中。 创建一个名为test_cities.py的程序,对刚编写的函数进行测试(别忘了,你需要导入模块unittest 以及要测试的函数)。编写...原创 2018-04-18 19:37:03 · 1240 阅读 · 0 评论 -
Python第九,十章练习题 (第五周作业)
9-3 用户 :创建一个名为User 的类,其中包含属性first_name 和last_name ,还有用户简介通常会存储的其他几个属性。在类User 中定义一个名 为describe_user() 的方法,它打印用户信息摘要;再定义一个名为greet_user() 的方法,它向用户发出个性化的问候。 创建多个表示不同用户的实例,并对每个实例都调用上述两个方法9.3...原创 2018-04-02 22:18:50 · 4816 阅读 · 0 评论 -
Python第七,八章练习题 (第四周作业)
动手试一试 7-3 10的整数倍 :让用户输入一个数字,并指出这个数字是否是10的整数倍。 7-5 电影票 :有家电影院根据观众的年龄收取不同的票价:不到3岁的观众免费;3~12岁的观众为10美元;超过12岁的观众为15美元。请编写一个循环,在其中询问用 户的年龄,并指出其票价。 7-8 熟食店 :创建一个名为sandwich_orders 的列表,在其中包含各种三明...原创 2018-04-02 11:17:32 · 2070 阅读 · 0 评论 -
Python第五,六章练习题 (第三周作业)
5-3 外星人颜色#1 :假设在游戏中刚射杀了一个外星人,请创建一个名为alien_color 的变量,并将其设置为’green’ 、’yellow’ 或’red’ 。 编写一条if 语句,检查外星人是否是绿色的;如果是,就打印一条消息,指出玩家获得了5个点。 编写这个程序的两个版本,在一个版本中上述测试通过了,而在另一个版本中未通过(未通过测试时没有输出)。 5-4 外星...原创 2018-03-20 19:32:17 · 5632 阅读 · 1 评论 -
Python 速览(第一周作业)
What’s Python Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s el...原创 2018-03-06 14:50:16 · 580 阅读 · 0 评论 -
Python第三,四章练习题(第二周作业)
动手试一试 请尝试编写一些简短的程序来完成下面的练习,以获得一些使用Python列表的第一手经验。你可能需要为每章的练习创建一个文件夹,以整洁有序的方式存储为完成各 章的练习而编写的程序。 3-1 姓名: 将一些朋友的姓名存储在一个列表中,并将其命名为names 。依次访问该列表中的每个元素,从而将每个朋友的姓名都打印出来。 3-2 问候语: 继续使用练习3-1中的列...原创 2018-03-13 15:22:00 · 3306 阅读 · 0 评论 -
Python 第二章练习题(第一周作业)
动手试一试 请完成下面的练习,在做每个练习时,都编写一个独立的程序。保存每个程序时,使用符合标准Python约定的文件名:使用小写字母和下划线,如simple_message.py和 simple_messages.py。 2-1 简单消息: 将一条消息存储到变量中,再将其打印出来。 2-2 多条简单消息: 将一条消息存储到变量中,将其打印出来;再将变量的值修改为一条...原创 2018-03-11 14:54:49 · 2422 阅读 · 0 评论 -
Python 目标(第一周作业)
在做项目(与爬虫相关):https://github.com/xiejiangzhao/SYSU_Course_Helper目前学习项目:Python语言下Tensorflow搭建机器学习框架原创 2018-03-11 14:27:27 · 275 阅读 · 0 评论 -
Python-ML(第十六周作业)
题目Assignment Steps 1 Create a classification dataset (n samples ! 1000, n features ! 10) 2 Split the dataset using 10-fold cross validation 3 Train the algorithms I GaussianNB I SVC (possible ...原创 2018-06-16 00:53:30 · 323 阅读 · 0 评论