We mean the world to our children and when we let them down, it’s a tragedy. A simple promise we make in a rush and break afterward may mean nothing t ...
分类:
其他好文 时间:
2019-12-24 10:11:41
阅读次数:
82
name = "wangyang" age = "25" with open("C:/Users/mike1/Desktop/name_age.txt", "w", encoding = "utf-8") as f1: f1.write("hellow world") 这么写是不行的,文件名是nam ...
分类:
编程语言 时间:
2019-12-24 09:37:28
阅读次数:
547
在前一章中讲了JavaScript的入门语法,在这一章要看看函数的使用。 函数的定义 JavaScript中的函数和Python中的非常类似,只不过定义的方式有些不同,下面看看是怎么定义的 //定义普通函数 function f1(){ console.log('hello world!') } / ...
分类:
编程语言 时间:
2019-12-23 20:48:47
阅读次数:
81
解构:ES6允许按照一定模式从数据和对象中提取值来对变量进行赋值 1.数组的解构赋值 let [a, b, c] = [1, 2, 3]; let [x, , y] = [1, 2, 3]; x // 1 y // 3 如果解构不成功,变量的值就等于undefined let [x, y, ...z ...
分类:
其他好文 时间:
2019-12-23 17:07:27
阅读次数:
84
1、快速开始 Hello World 前后端分离框如何快速进入开发,请参照下面hello world实现demo 一、后台请求实现 直接访问请求http://localhost:8080/jeecg boot/test/jeecgDemo/hello 会提示token无效, 所以需要配置下拦截器Sh ...
分类:
其他好文 时间:
2019-12-23 16:32:08
阅读次数:
551
def main(): str1 = 'hello,world!' # 通过len函数计算字符串的长度 print(len(str1)) # 13 # 获得字符串首字母大写的拷贝 print(str1.capitalize()) # Hello, world! # 获得字符串变大写后的拷贝 prin ...
分类:
编程语言 时间:
2019-12-23 15:14:00
阅读次数:
126
7年前就注册了博客园。今天才开通发了第一篇随笔。也不知道是个什么流程。先看看情况吧。 感觉像是写qq日志。 console.log('hello world'); ∑1/x2=∞ ...
分类:
其他好文 时间:
2019-12-23 13:37:22
阅读次数:
80
一、准备工作 (1)查阅 WowWiki: 提供了大量有用的WOW API,其中最重要的有 World_of_Warcraft_API 列举了所有可用的API Event_API 列举了所有事件 Widget_API 列举了操作GUI的相关API (2)工具 ...
分类:
其他好文 时间:
2019-12-23 11:37:08
阅读次数:
59
Further Reading Further Reading Where you go from here is up to you, the world is your router1 Ghost's dynamic routing system is an extremely powerful ...
分类:
其他好文 时间:
2019-12-23 00:15:50
阅读次数:
115
1.安装软件 c语言开发工具众多,初学者推荐使用Dev-Cpp 5.6.3 TDM-GCC x64 4.8.1 Setup.exe;安装过程全部默认安装即可。 2.使用Dev-Cpp编写第一个入门实例-hello world 2.1新建文件。打开Dev-Cpp,依次选择【文件】——》【新建】——》【 ...
分类:
编程语言 时间:
2019-12-22 20:03:26
阅读次数:
78