码迷,mamicode.com
首页 >  
搜索关键字:world    ( 10945个结果
Python学习之路——pycharm的第一个项目
Python学习之路——pycharm的第一个项目 简介: 上文中已经介绍如何安装Pycharm已经环境变量的配置。现在软件已经安装成功,现在就开始动手做第一个Python项目。第一个“Hello World”项目。 第一步:打开Pycharm软件 1.双击,桌面图标,运行软件,进入软件后,点击“C ...
分类:编程语言   时间:2020-06-17 20:17:58    阅读次数:66
cv一把梭-elementUI
###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镜像的结构,所以本节中,我们来创建第一个docker镜像 使用docker run命令创建第一个docker镜像 1.执行docker run ubuntu echo "hello world docker" 命令,若执行的命令是”docker run ...
分类:其他好文   时间:2020-06-17 01:44:00    阅读次数:63
【java基础】helloworld命令行运行
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
PHP命令行执行文件或代码【转】
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的常用命令帮助命令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
MySQL触发器
介绍 触发器是与表有关的数据库对象,在满足定义条件时触发,并执行触发器中定义的语句集合。 触发器的特性: 1、有begin end体,begin end;之间的语句可以写的简单或者复杂 2、什么条件会触发:I、D、U 3、什么时候触发:在增删改前或者后(before/after) 4、触发频率:针对 ...
分类:数据库   时间:2020-06-16 00:31:43    阅读次数:63
从零整理java基础02
键盘输入(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/await 和promise的理解
语法 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
1031 Hello World for U
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
10945条   上一页 1 ... 48 49 50 51 52 ... 1095 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!