Python学习之路——pycharm的第一个项目 简介: 上文中已经介绍如何安装Pycharm已经环境变量的配置。现在软件已经安装成功,现在就开始动手做第一个Python项目。第一个“Hello World”项目。 第一步:打开Pycharm软件 1.双击,桌面图标,运行软件,进入软件后,点击“C ...
分类:
编程语言 时间:
2020-06-17 20:17:58
阅读次数:
66
###Form ####Methods-resetFields <template> <div class="home"> <el-form :model="ruleForm" ref="ruleForm" label-width="100px" class="demo-ruleForm"> <el ...
分类:
其他好文 时间:
2020-06-17 10:31:19
阅读次数:
48
引言 根据上一节学到知识点,我们明白docker镜像的结构,所以本节中,我们来创建第一个docker镜像 使用docker run命令创建第一个docker镜像 1.执行docker run ubuntu echo "hello world docker" 命令,若执行的命令是”docker run ...
分类:
其他好文 时间:
2020-06-17 01:44:00
阅读次数:
63
helloworld 新建文件夹,存放代码 新建Java文件,文件后缀为a.java 编写代码 public class hello{ public static void main(String[] args){ System.out.println("Hello World"); }} 编译 j ...
分类:
编程语言 时间:
2020-06-17 01:10:53
阅读次数:
60
1.执行代码 php -r "echo 'hello world';" (注意加分号,与PHP文件一样) 2.执行文件 php -f 文件所在路径(/var/www/xxx.php) 文章来自:https://www.cnblogs.com/indifferent/p/11276099.html ...
分类:
Web程序 时间:
2020-06-16 18:24:28
阅读次数:
50
Docker的常用命令帮助命令docker version docker info docker --help 镜像命令docker images REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE hello-world latest 9f5834b25059 ...
分类:
其他好文 时间:
2020-06-16 13:19:07
阅读次数:
66
介绍 触发器是与表有关的数据库对象,在满足定义条件时触发,并执行触发器中定义的语句集合。 触发器的特性: 1、有begin end体,begin end;之间的语句可以写的简单或者复杂 2、什么条件会触发:I、D、U 3、什么时候触发:在增删改前或者后(before/after) 4、触发频率:针对 ...
分类:
数据库 时间:
2020-06-16 00:31:43
阅读次数:
63
键盘输入(Scanner类创建对象) System.out:标准输出(显示器) System.in:标准输入(键盘)Scanner input = new Scanner(Syatem.out.in);Scanner input:表明input是一个Scanner类型的变量 Scanner对象的方法 ...
分类:
编程语言 时间:
2020-06-15 20:54:35
阅读次数:
62
语法 async 函数返回一个 Promise 对象 1. async function f() { return 'hello world' }; f().then( (v) => console.log(v)) // hello world 2. async function e(){ thro ...
分类:
其他好文 时间:
2020-06-15 17:40:57
阅读次数:
59
Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l l r ...
分类:
其他好文 时间:
2020-06-15 15:34:10
阅读次数:
61