码迷,mamicode.com
首页 >  
搜索关键字:python之hello world    ( 10946个结果
c++:hello world!
#include <iostream> using namespace std; void main() { cout<<"hello world"<<endl; } 1 #include <iostream> 2 using namespace std; 3 void main() 4 { 5 c ...
分类:编程语言   时间:2020-06-10 21:05:01    阅读次数:65
第四周总结
这周学了一下Python爬取数据,是入门级别 这是一小部分练习代码 import time import json import requests import jsonpath from pyecharts.charts import Map import pyecharts.options as ...
分类:其他好文   时间:2020-06-10 19:20:39    阅读次数:50
读取内存地址中的数据
import ctypesfrom ctypes import string_atfrom sys import getsizeoffrom binascii import hexlifyvalue="我和你"#'hello world' #定义一个字符串变量address=id(value) #获 ...
分类:其他好文   时间:2020-06-09 13:06:17    阅读次数:111
第3章 Shell脚本入门
第3章 Shell脚本入门 1.脚本格式 脚本以#!/bin/bash开头(指定解释器) 2.第一个Shell脚本:hello world (1)需求:创建一个Shell脚本,输出hello world (2)案例实操: [root@localhost ~]# touch helloworld.sh ...
分类:系统相关   时间:2020-06-07 19:23:23    阅读次数:76
[Java]遍历字符串.length(), .charAt()
public class CharAt { public static void main(String[] args) { String ac = "Hello World"; //for (int i = 0; i < ac.length(); i++) int i = 0; //while ( ...
分类:编程语言   时间:2020-06-07 11:07:35    阅读次数:73
一文了解Docker容器技术的操作
一文了解Docker容器技术的操作 前言一、Docker是什么二、Docker的安装及测试Docker的安装Docker的Hello world测试三、Docker的常见操作镜像的基本操作容器的基本操作镜像、容器的导入和导出四、关于DockerFile总结 前言 相信点进这篇文章的Coder,不管是 ...
分类:其他好文   时间:2020-06-06 14:28:17    阅读次数:118
C 实战练习题目34
题目:练习函数调用。 程序分析:无。 实例: 1 #include <stdio.h> 2 void hello_world(void) 3 { 4 printf("Hello, world!\n"); 5 } 6 void three_hellos(void) 7 { 8 int counter; ...
分类:其他好文   时间:2020-06-06 12:42:10    阅读次数:50
RPC
RPC RPC入门 RPC是远程过程调用的简称,是分布式系统中不同节点间流行的通信方式。在互联网时代,RPC已经和IPC一样成为一个不可或缺的基础构件。因此Go语言的标准库也提供了一个简单的RPC实现,我们将以此为入口学习RPC的各种用法。 RPC版"Hello, World" Go语言的RPC包的 ...
分类:其他好文   时间:2020-06-06 11:27:18    阅读次数:57
打印“hello world!”不能使用“;”——c语言笔试题
#include <stdio.h> void main(void) { if (printf("hello world!")) {} } ...
分类:编程语言   时间:2020-06-06 00:58:30    阅读次数:84
WPF Step By Step 系列5-Prism框架在项目中使用
转自:https://www.cnblogs.com/joean/p/4787730.html 回顾 上一篇,我们介绍了关于控件模板的用法,本节我们将继续说明WPF更加实用的内容,在大型的项目中如何使用Prism框架,并给予Prism框架来构建基础的应用框架,并且如何来设计项目的架构和模块,下面我们 ...
分类:Windows程序   时间:2020-06-05 22:58:29    阅读次数:77
10946条   上一页 1 ... 50 51 52 53 54 ... 1095 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!