免安装版本python安装pip模块.md
免安装python
下载便携式 Python 版本
前往 Python 官方网站的下载页面,在“Looking for a specific release?”下拉菜单中选择一个合适的便携式版本(例如,Python 3.8.12 64-bit 精简版本)&am…
一、属性简洁表示法
ES5 写法
let name xiao
let age 30
let obj {name: name,age: age
}
console.log(obj)
// {name: xiao, age: 30}ES6 简洁写法 对象的属性名 和 属性值的变量名相同,可以简写成 一个属性名
let name xiao
let age 30
let obj {name,age
…