码迷,mamicode.com
首页 >  
搜索关键字:hello world    ( 21696个结果
python笔记之列表和元组
pyhton的列表和元组,说白了其实就是一种数据结构,只是在python当中更加方便的去操作而已。。 1、序列 其实字符串就是采取序列的方式的: string = "hello" print string[0] 结果为:h 对比其他编程语言,python还有一个负值索引的概念:...
分类:编程语言   时间:2014-07-22 23:04:53    阅读次数:343
maven File encoding has not been set
原pom.xml配置文件: 4.0.0 com.my.helloworld hello-world 1.0-SNAPSHOT Maven Hello World Project junit jun...
分类:其他好文   时间:2014-07-22 22:59:36    阅读次数:374
python for else
>>> for i in range(0,10):if i > 10:break;else:print "hello world";输出:hello world>>> for i in range(0,10):if i > 5:break;else:print "hello world";没有输出-...
分类:编程语言   时间:2014-05-01 21:13:53    阅读次数:368
Lua基础——赋值语句、表达式、流程控制
赋值语句 注释,用(--)来表示 定义,lua中没有定义(申明数据类型),它是通过赋值来确定其数据类型的。 赋值,是改变一个变量的值和改变表域的最基本的方法。 a = "hello" .. "world"   Lua可以对多个变量同时赋值,变量列表和值列表的各个元素用逗号分开,赋值语句右边的值会依次赋给左边的变量。a, b = 10, 2*x  a=10; b=2*x  遇到赋值语句...
分类:其他好文   时间:2014-05-01 18:16:03    阅读次数:337
js:深入函数(函数是对象)
//由于函数是对象,所以可以直接把函数通过参数传递进来;也可以把函数作为返回值。 function calFun(fun,arg){   //第一个参数就是函数对象   return fun(arg); } function sum(num){   return num+100; } function say(str){   alert("hello "+str); } //...
分类:Web程序   时间:2014-04-30 22:41:38    阅读次数:324
solr-1.4.1 环境配置
solr-1.4.1 环境配置...
分类:其他好文   时间:2014-04-30 22:31:38    阅读次数:231
(已解决)sublime text 写程序build后提示can't find '__main__' module in ' '
问题描述:                在sublime text里写最简单的python语句hello world:                     print  ('hello world')                      回车build后出错如下图:     解决办法:                  这个问题的原因说起来很幼稚,就是因为没有保存文件。所...
分类:其他好文   时间:2014-04-30 22:16:38    阅读次数:344
Timus 1642. 1D Maze迷宫
1D people lived in a 1D country. Everything in the country was one-dimensional, and everything was simple and clear: just one axis and two directions — forward and backward. Even a 1D world has proble...
分类:其他好文   时间:2014-04-29 13:44:22    阅读次数:284
HDU-2850-Load Balancing(贪心)
Problem Description In the Wide Web World, Which web server was popular in web site? Apache, nginx, lighttpd? Baidu.com use Apache, and many web sites like 163.com use nginx. Why? Its configuration i...
分类:其他好文   时间:2014-04-29 13:24:20    阅读次数:355
【Unity Shaders】Reflecting Your World —— 在Unity3D中创建一个简单的动态Cubemap系统
本系列主要参考《Unity Shaders and Effects Cookbook》一书(感谢原书作者),同时会加上一点个人理解或拓展。 这里是本书所有的插图。这里是本书所需的代码和资源(当然你也可以从官网下载)。 ========================================== 分割线 ==================================...
分类:其他好文   时间:2014-04-29 13:17:21    阅读次数:376
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!