Python 类型转换 str(),repr()|format() : 将非字符类型转成子串 int() : 转为整形 float() : 转为浮点型 list(s) : 将字串s转成列表 tuple(s) : 将字串s转成元组 ...
分类:
编程语言 时间:
2014-07-31 02:17:35
阅读次数:
425
.NET4定义了8个Tuple类,和一个静态Tuple类---------------------------------------------------------------------返回多个值usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Threading.Tasks;
namespaceConsoleApplication..
分类:
Web程序 时间:
2014-07-28 16:50:44
阅读次数:
233
The Python Standard Library (2.7.8)的中文版,翻译过程中根据个人理解,没有对英文直接意译,而是进行了适当的修饰。暂时没有翻译整个标准库文档的计划,暂时只翻译一些感兴趣的章节。
分类:
其他好文 时间:
2014-07-24 22:10:42
阅读次数:
206
zip is a built-in function that takes two or more sequence and ‘zips’ them into a list of tuples, where each tuple contains one element from each sequ...
分类:
其他好文 时间:
2014-07-22 22:53:14
阅读次数:
269
1.开始Vim test.py#!/usr/bin/pythonprint "hello,world!";chmod +x test.py./test.py2.基本知识Python有五个标准的数据类型:Numbers(数字)String(字符串)List(列表)Tuple(元组)Dictionary...
分类:
编程语言 时间:
2014-07-22 22:32:16
阅读次数:
270
函数注意: 没有定义返回类型的函数会返回特殊的值,叫 Void。它其实是一个空的元组(tuple),没有任何元素,可以写成()。使用元组作为返回参数,返回多个参数 func count(string: String) -> (vowels: Int, consonants: Int, others....
分类:
其他好文 时间:
2014-07-20 22:28:58
阅读次数:
270
Dictionaries have a method called items that returns a list of tuples, where each tuple is a key-value pair. As you should expect from a dictionary, t...
分类:
其他好文 时间:
2014-07-19 23:02:40
阅读次数:
372
It is often useful to swap the values of two variables. With conventional assignments, you have to use a temporary variable. This solution is cumberso...
分类:
其他好文 时间:
2014-07-19 18:32:06
阅读次数:
243
Strictly speaking, a function can only return one value, but if the value is a tuple, the effect is the same as returning multiple values. For example...
分类:
其他好文 时间:
2014-07-19 18:31:23
阅读次数:
208
1、第一个程序import Foundationprintln(“hello world”)2、常用数据类型int/UInt/Double/Float/Bool/String/Array/Dictionary/元组(tuple)/可选类型(Optional)3、变量常量必须设初始值变量 var m....
分类:
其他好文 时间:
2014-07-17 18:14:01
阅读次数:
224