Declare JavaScript Objects as Variables Incomplete在我们深入 面向对象编程之前 ,让我们先回顾一下Javascript的 对象(Object) 任务给你的 motorBike 对象添加 wheels, engines 和 seats 属性,并且设置他 ...
FCC ES6
var 和 let 的区别One of the biggest problems with declaring variables with the varkeyword is that you can overwrite variable declarations without an error ...
FCC Basic JS
Comment第1种 //这是注释 第2种 /* 这是注释 */ VariablesJS有7种数据类型:undefined, null, boolean, string, symbol, number, and object。 定义变量var 变量名 变量名不可以包含空格,也不可以以1个数字开始。 ...
读书笔记 pandas 第1章 Series对象
https://github.com/jakevdp/PythonDataScienceHandbook Pandas 有三个基本数据结构:Series、DataFrame 和 Index。 NumPy 数组通过隐式定义的整数索引获取数值, 而 Pandas 的 Series 对象用一种显式定义 ...
U盘容量变小解决方法
之前U盘用来装镜像ISO了,很久没用,突然发现容量只有3M多… 比较麻烦的解决方法清除磁盘打开命令提示符窗口,输入diskpart 后再输入 list disk,找到自己的U盘 磁盘2就是我的U盘。 接下来输入select disk 2,显示磁盘2现在是所选磁盘。 然后输入clean 添加卷w ...
python编程 从入门到实践 9.3 TypeError
TypeErrorclass Car(): def __init__(self, make, model, year): self.make = make self.model = model self.year = year self. ...
python PEP263
https://www.python.org/dev/peps/pep-0263/ SyntaxError Non-ASCII character ‘\xe5’ in file D:\python_work\electric_car_1.py on line 23, but no ...
Python naming conflict
案例群里小伙伴说pycharm可以正常run代码,debug有错误提示。 DebugAttributeError:module ‘numbers’ has no attribute ‘Number’ 解决方法原因是Naming conflict,有个叫numbers.py的文件与python的s ...
Anaconda下载慢
Anaconda下载慢为了录视频,想演示下anaconda安装使用,所以卸载了打算重新安装。没想到下载了半天都下载不下来,刚好这个月清华镜像也不能用。反正很多库暂时用不到,所以先把录视频所需的几样东西安装好了就行了… 重新下载安装需要的东西: python (在官网下载) numpy (cmd ...
matplotlib c argument
plt.scatter(x_values, y_values, c=(0, 0, 0.8), edgecolor='none', s=40) Warn ‘c’ argument looks like a single numeric RGB or RGBA sequence, whi ...