标签:int line nbsp 示例 style 使用 类型 ops col
示例代码:
new PythonTuple(new[] { 1, 2, 3 }); PythonTuple myTuple = PythonOps.MakeTuple(new object[] { 1, 2, 3 }); // IronPython.Runtime.List List list = new List(); list.Add(1); list.Add(2); list.Add(3); PythonTuple tuple = new PythonTuple(list); foreach (int i in tuple) { Console.WriteLine("Tuple item: {0}", i); }
标签:int line nbsp 示例 style 使用 类型 ops col
原文地址:https://www.cnblogs.com/wzwyc/p/9476386.html