Python3 与 NetCore 基础语法对比(List、Tuple、Dict、Set专栏)
Jupyter最新版:https://www.cnblogs.com/dotnetcrazy/p/9155310.html
更新:新增Python可变Tuple、List切片、Set的扩展:https://www.cnblogs.com/dotnetcrazy/p/9155310.html#extend
今天说说List和Tuple以及Dict。POP部分还有一些如Func、IO(也可以放OOP部分说)然后就说说面向对象吧。
先吐槽一下:Python面向对象真心需要规范,不然太容易走火入魔了 -_-!!! 汗,下次再说。。。
对比写作真的比单写累很多,希望大家多捧捧场 ^_^
进入扩展:https://www.cnblogs.com/dotnetcrazy/p/9155310.html#ext
步入正题:
1.列表相关:
Python定义一个列表(列表虽然可以存不同类型,一般我们把相同类型的值存列表里面,不同类型存字典里(key,value))info_list=[] #空列表infos_list=["C#","JavaScript"]遍历和之前一样,for 或者 while 都可以(for扩展:https://www.cnblogs.com/dotnetcrazy/p/9102030.html#forelse)
NetCore:var infos_list = new List<object>() { "C#", "JavaScript" };
遍历可以用foreach,for,while
Python列表的添加:
# 末尾追加 infos_list.append("Java")# 添加一个列表 infos_list.extend(infos_list2)# 指定位置插入 infos_list.insert(0,"Python")# 插入列表:infos_list.insert(0,temp_list)看后面的列表嵌套,是通过下标方式获取,eg: infos_list[0][1]
Python在指定位置插入列表是真的插入一个列表进去,C#是把里面的元素挨个插入进去
NetCore:Add,AddRange,Insert,InsertRange (和Python插入列表有些区别)
Python列表删除系列:
infos_list.pop() #删除最后一个infos_list.pop(0) #删除指定索引,不存在就报错infos_list.remove("张三") # remove("")删除指定元素,不存在就报错
del infos_list[1] #删除指定下标元素,不存在就报错del infos_list #删除集合(集合再访问就不存在了)不同于C#给集合赋null
再过一遍
NetCore:移除指定索引:infos_list.RemoveAt(1); 移除指定值: infos_list.Remove(item); 清空列表: infos_list.Clear();
Python修改:(只能通过索引修改)
infos_list2[1]="PHP" #只有下标修改一种方式,不存在则异常# 想按值修改需要先查下标再修改 eg:infos_list2.index("张三")infos_list2[0]="GO"# infos_list2.index("dnt")#不存在则异常
# 为什么python中不建议在for循环中修改列表?# 由于在遍历的过程中,删除了其中一个元素,导致后面的元素整体前移,导致有个元素成了漏网之鱼。# 同样的,在遍历过程中,使用插入操作,也会导致类似的错误。这也就是问题里说的无法“跟踪”元素。# 如果使用while,则可以在面对这样情况的时候灵活应对。NetCore:基本上和Python一样
Python查询系列:in, not in, index, count
if "张三" in names_list:names_list.remove("张三")if "大舅子" not in names_list:names_list.append("大舅子")names_list.index("王二麻子")names_list.count("逆天")
NetCore:IndexOf , Count
查找用Contains,其他的先看看,后面会讲
Python排序
num_list.reverse() # 倒序num_list.sort() # 从小到大排序num_list.sort(reverse=True) # 从大到小
列表嵌套,获取用下标的方式:num_list[5][1]
NetCore:var num_list2 = new List<object>() { 33, 44, 22,new List<object>(){11,55,77} };
不能像python那样下标操作,可以定义多维数组来支持 num_list2[i][j] (PS,其实这个嵌套不太用,以后都是列表里面套Dict,类似与Json)
2.Tuple 元组
这次先说NetCore吧:(逆天ValueTuple用的比较多,下面案例就是用的这个)
C#中元组主要是方便程序员,不用自然可以。比如:当你返回多个值是否还用ref out 或者返回一个list之类的? 这些都需要先定义,比较麻烦.元祖在这些场景用的比较多。先说说基本使用:初始化:var test_tuple = ("萌萌哒", 1, 3, 5, "加息", "加息"); //这种方式就是valueTuple了(看vscode监视信息)需要说下的是,取值只能通过itemxxx来取了,然后就是valueTuple的值是可以修改的忽略上面说的(一般不会用的),直接进应用场景:就说到这了,代码部分附录是有的Python:用法基本上和列表差不多(下标和前面说的用法一样,比如test_tuples[-1] 最后一个元素)定义:一个元素:test_tuple1=(1,)test_tuple=("萌萌哒",1,3,5,"加息","加息")test_tuple.count("加息")test_tuple.index("萌萌哒") #没有find方法test_tuple.index("加息", 1, 4) #从特定位置查找,左闭右开区间==>[1,4)来说说拆包相关的,C#的上面说了,这边来个案例即可:a=(1,2)b=a #把a的引用给bc,d=a #不是把a分别赋值给c和d,等价于:c=a[0] d=a[1]来个扩展吧(多维元组):some_tuples=[(2,"萌萌哒"),(4,3)]some_tuples[0]some_tuples[0][1]
Python遍历相关:
#每一次相当于取一个元组,那可以用之前讲的例子来简化了:c,d=a #等价于:c=a[0] d=a[1]
for k,v in infos_dict.items():print("Key:%s,Value:%s"%(k,v))
NetCore:方式和Python差不多
foreach (KeyValuePair<string, object> kv in infos_dict){Console.WriteLine($"Key:{kv.Key},Value:{kv.Value}");}
Python增删改系列:
增加、修改:infos_dict["wechat"]="dotnetcrazy" #有就修改,没就添加
删除系列:
# 删除del infos_dict["name"] #不存在就报错#清空字典内容infos_dict.clear()# 删除字典del infos_dict
NetCore:
添加:infos_dict.Add("wechat", "lll"); infos_dict["wechat1"] = "lll";修改:infos_dict["wechat"] = "dotnetcrazy";删除:infos_dict.Remove("dog"); //不存在不报错 infos_dict.Clear(); //列表内容清空
Python查询系列:推荐:infos_dict.get("mmd") #查不到不会异常
NetCore:infos_dict["name"] 可以通过 ContainsKey(key) 避免异常。看值就 ContainsValue(value)
扩展:
1.多维元组:
some_tuples=[(2,"萌萌哒"),(4,3)]some_tuples[0]some_tuples[0][1]
2.运算符扩展:(+,*,in,not in)
# 运算符扩展:test_str="www.baidu.com"test_list=[1,"d",5]test_dict={"name":"dnt","wechat":"xxx"}test_list1=[2,4,"n","t",3]# + 合并 (不支持字典)print(test_str+test_str)print(test_list+test_list1)# * 复制 (不支持字典)print(test_str*2)print(test_list*2)
# in 是否存在(字典是查key)print("d" in test_str) #Trueprint("d" in test_list) #Trueprint("d" in test_dict) #Falseprint("name" in test_dict) #True# not in 是否不存在(字典是查key)print("z" not in test_str) #Trueprint("z" not in test_list) #Trueprint("z" not in test_dict) #Trueprint("name" not in test_dict) #False
3.内置函数扩展:(len,max,min,del)
len(),这个就不说了,用的太多了
max(),求最大值,dict的最大值是比较的key
这个注意一种情况(当然了,你按照之前说的规范,list里面放同一种类型就不会出错了)
min(),这个和max一样用
del() or del xxx 删完就木有了#可以先忽略cmp(item1, item2) 比较两个值 #是Python2里面有的 cmp(1,2) ==> -1 #cmp在比较字典数据时,先比较键,再比较值
知识扩展:
可变的元组(元组在定义的时候就不能变了,但是可以通过类似这种方式来改变)
List切片:
Set集合扩展:
更新:(漏了一个删除的方法):
概念再补充下:# dict内部存放的顺序和key放入的顺序是没有关系的
# dict的key必须是不可变对象(dict根据key进行hash算法,来计算value的存储位置
# 如果每次计算相同的key得出的结果不同,那dict内部就完全混乱了)用一张图理解一下:(测试结果:元组是可以作为Key的 -_-!)
附录Code:
Python:https://github.com/lotapp/BaseCode/tree/master/python/1.POP/3.list_tuple_dict
Python List:
- # 定义一个列表,列表虽然可以存不同类型,一般我们把相同类型的值存列表里面,不同类型存字典里(key,value)
- infos_list=["C#","JavaScript"]#[]
- # ###########################################################
- # # 遍历 for while
- # for item in infos_list:
- # print(item)
- # i=0
- # while i<len(infos_list):
- # print(infos_list[i])
- # i+=1
- # ###########################################################
- # # 增加
- # # 末尾追加
- # infos_list.append("Java")
- # print(infos_list)
- # # 指定位置插入
- # infos_list.insert(0,"Python")
- # print(infos_list)
- # temp_list=["test1","test2"]
- # infos_list.insert(0,temp_list)
- # print(infos_list)
- # # 添加一个列表
- # infos_list2=["张三",21]#python里面的列表类似于List<object>
- # infos_list.extend(infos_list2)
- # print(infos_list)
- # # help(infos_list.extend)#可以查看etend方法描述
- # ###########################################################
- # # 删除
- # # pop()删除最后一个元素,返回删掉的元素
- # # pop(index) 删除指定下标元素
- # print(infos_list.pop())
- # print(infos_list)
- # print(infos_list.pop(0))
- # # print(infos_list.pop(10)) #不存在就报错
- # print(infos_list)
- # # remove("")删除指定元素
- # infos_list.remove("张三")
- # # infos_list.remove("dnt") #不存在就报错
- # print(infos_list)
- # # del xxx[index] 删除指定下标元素
- # del infos_list[1]
- # print(infos_list)
- # # del infos_list[10] #不存在就报错
- # # del infos_list #删除集合(集合再访问就不存在了)
- # ###########################################################
- # # 修改 xxx[index]=xx
- # # 注意:一般不推荐在for循环里面修改
- # print(infos_list2)
- # infos_list2[1]="PHP" #只有下标修改一种方式
- # # infos_list2[3]="GO" #不存在则异常
- # print(infos_list2)
- # # 想按值修改需要先查下标再修改
- # infos_list2.index("张三")
- # infos_list2[0]="GO"
- # print(infos_list2)
- # # infos_list2.index("dnt")#不存在则异常
- # # 知识面拓展: https://www.zhihu.com/question/49098374
- # # 为什么python中不建议在for循环中修改列表?
- # # 由于在遍历的过程中,删除了其中一个元素,导致后面的元素整体前移,导致有个元素成了漏网之鱼。
- # # 同样的,在遍历过程中,使用插入操作,也会导致类似的错误。这也就是问题里说的无法“跟踪”元素。
- # # 如果使用while,则可以在面对这样情况的时候灵活应对。
- ###########################################################
- # # 查询 in, not in, index, count
- # # # for扩展:https://www.cnblogs.com/dotnetcrazy/p/9102030.html#forelse
- # names_list=["张三","李四","王二麻子"]
- # # #张三在列表中执行操作
- # if "张三" in names_list:
- # names_list.remove("张三")
- # print(names_list)
- # # #查看"大舅子"不在列表中执行操作
- # if "大舅子" not in names_list:
- # names_list.append("大舅子")
- # print(names_list)
- # # #查询王二麻子的索引
- # print(names_list.index("王二麻子"))
- # print(names_list.count("大舅子"))
- # print(names_list.count("逆天"))
- ###########################################################
- # # 排序(sort, reverse 逆置)
- # num_list=[1,3,5,88,7]
- # #倒序
- # num_list.reverse()
- # print(num_list)
- # # 从小到大排序
- # num_list.sort()
- # print(num_list)
- # # 从大到小
- # num_list.sort(reverse=True)
- # print(num_list)
- # # ###########################################################
- # # #列表嵌套(列表也是可以嵌套的)
- # num_list2=[33,44,22]
- # num_list.append(num_list2)
- # print(num_list)
- # # for item in num_list:
- # # print(item,end="")
- # print(num_list[5])
- # print(num_list[5][1])
- # # ###########################################################
- # # # 引入Null==>None
- # # a=[1,2,3,4]
- # # b=[5,6]
- # # a=a.append(b)#a.append(b)没有返回值
- # # print(a)#None
Python Tuple:
- # 只能查询,其他操作和列表差不多(不可变)
- test_tuple=("萌萌哒",1,3,5,"加息","加息")
- # count index
- print(test_tuple.count("加息"))
- print(test_tuple.index("萌萌哒"))#没有find方法
- # 注意是左闭右开区间==>[1,4)
- # print(test_tuple.index("加息", 1, 4))#查不到报错:ValueError: tuple.index(x): x not in tuple
- #下标取
- print(test_tuple[0])
- # 遍历
- for item in test_tuple:
- print(item)
- i=0
- while i<len(test_tuple):
- print(test_tuple[i])
- i+=1
- # 扩展:
- test_tuple1=(1,) #(1)就不是元祖了
- test_tuple2=(2)
- print(type(test_tuple1))
- print(type(test_tuple2))
- # # ==============================================
- # 扩展:(后面讲字典遍历的时候会再提一下的)
- a=(1,2)
- b=a#把a的引用给b
- #a里面两个值,直接给左边两个变量赋值了(有点像拆包了)
- c,d=a #不是把a分别赋值给c和d,等价于:c=a[0] d=a[1]
- print(a)
- print(b)
- print(c)
- print(d)
Python Dict:
- infos_dict={"name":"dnt","web":"dkill.net"}
- # # 遍历
- # for item in infos_dict.keys():
- # print(item)
- # #注意,如果你直接对infos遍历,其实只是遍历keys
- # for item in infos_dict:
- # print(item)
- # for item in infos_dict.values():
- # print(item)
- # for item in infos_dict.items():
- # print("Key:%s,Value:%s"%(item[0],item[1]))
- # #每一次相当于取一个元组,那可以用之前讲的例子来简化了:c,d=a #等价于:c=a[0] d=a[1]
- # for k,v in infos_dict.items():
- # print("Key:%s,Value:%s"%(k,v))
- # # 增加 修改 (有就修改,没就添加)
- # # 添加
- # infos_dict["wechat"]="lll"
- # print(infos_dict)
- # # 修改
- # infos_dict["wechat"]="dotnetcrazy"
- # print(infos_dict)
- # # 删除
- # del infos_dict["name"]
- # del infos_dict["dog"] #不存在就报错
- # print(infos_dict)
- # #清空字典内容
- # infos_dict.clear()
- # print(infos_dict)
- # # 删除字典
- # del infos_dict
- # 查询
- infos_dict["name"]
- # infos_dict["mmd"] #查不到就异常
- infos_dict.get("name")
- infos_dict.get("mmd")#查不到不会异常
- # 查看帮助
- # help(infos_dict)
- len(infos_dict) #有几对key,value
- # infos_dict.has_key("name") #这个是python2里面的
NetCore:https://github.com/lotapp/BaseCode/tree/master/netcore/1_POP
NetCore List:
- // using System;
- // using System.Collections.Generic;
- // using System.Linq;
- // namespace aibaseConsole
- // {
- // public static class Program
- // {
- // private static void Main()
- // {
- // #region List
- // //# 定义一个列表
- // // # infos_list=["C#","JavaScript"]#[]
- // var infos_list = new List<object>() { "C#", "JavaScript" };
- // // var infos_list2 = new List<object>() { "张三", 21 };
- // // // # ###########################################################
- // // // # # 遍历 for while
- // // // # for item in infos_list:
- // // // # print(item)
- // // foreach (var item in infos_list)
- // // {
- // // System.Console.WriteLine(item);
- // // }
- // // for (int i = 0; i < infos_list.Count; i++)
- // // {
- // // System.Console.WriteLine(infos_list[i]);
- // // }
- // // // # i=0
- // // // # while i<len(infos_list):
- // // // # print(infos_list[i])
- // // // # i+=1
- // // int j=0;
- // // while(j<infos_list.Count){
- // // Console.WriteLine(infos_list[j++]);
- // // }
- // // // # ###########################################################
- // // // # # 增加
- // // // # # 末尾追加
- // // // # infos_list.append("Java")
- // // // # print(infos_list)
- // // DivPrintList(infos_list);
- // // infos_list.Add("Java");
- // // DivPrintList(infos_list);
- // // // # # 指定位置插入
- // // // # infos_list.insert(0,"Python")
- // // // # print(infos_list)
- // // infos_list.Insert(0,"Python");
- // // DivPrintList(infos_list);
- // // // # # 添加一个列表
- // // // # infos_list2=["张三",21]#python里面的列表类似于List<object>
- // // // # infos_list.extend(infos_list2)
- // // // # print(infos_list)
- // // infos_list.AddRange(infos_list2);
- // // DivPrintList(infos_list);
- // // /*C#有insertRange方法 */
- // // DivPrintList(infos_list2,"List2原来的列表:");
- // // infos_list2.InsertRange(0,infos_list);
- // // DivPrintList(infos_list2,"List2变化后列表:");
- // // // # # help(infos_list.extend)#可以查看etend方法描述
- // // // # ###########################################################
- // // // # # 删除
- // // // # # pop()删除最后一个元素,返回删掉的元素
- // // // # # pop(index) 删除指定下标元素
- // // // # print(infos_list.pop())
- // // // # print(infos_list)
- // // // # print(infos_list.pop(1))
- // // // # # print(infos_list.pop(10)) #不存在就报错
- // // // # print(infos_list)
- // // // # # remove("")删除指定元素
- // // // # infos_list.remove("张三")
- // // // # # infos_list.remove("dnt") #不存在就报错
- // // // # print(infos_list)
- // // // # # del xxx[index] 删除指定下标元素
- // // // # del infos_list[1]
- // // // # print(infos_list)
- // // // # # del infos_list[10] #不存在就报错
- // // // # del infos_list #删除集合(集合再访问就不存在了)
- // // DivPrintList(infos_list);
- // // infos_list.RemoveAt(1);
- // // // infos_list.RemoveAt(10);//不存在则报错
- // // // infos_list.RemoveRange(0,1); //可以移除多个
- // // DivPrintList(infos_list);
- // // infos_list.Remove("我家在东北吗?"); //移除指定item,不存在不会报错
- // // DivPrintList(infos_list,"清空前:");
- // // infos_list.Clear();//清空列表
- // // DivPrintList(infos_list,"清空后:");
- // // // # ###########################################################
- // // // # # 修改 xxx[index]=xx
- // // // # # 注意:一般不推荐在for循环里面修改
- // // // # print(infos_list2)
- // // // # infos_list2[1]="PHP" #只有下标修改一种方式
- // // // # # infos_list2[3]="GO" #不存在则异常
- // // // # print(infos_list2)
- // // DivPrintList(infos_list2);
- // // infos_list2[1] = "PHP";
- // // // infos_list2[3]="GO"; //不存在则异常
- // // DivPrintList(infos_list2);
- // // // # # 想按值修改需要先查下标再修改
- // // // # infos_list2.index("张三")
- // // // # infos_list2[0]="GO"
- // // // # print(infos_list2)
- // // // # # infos_list2.index("dnt")#不存在则异常
- // // int index = infos_list2.IndexOf("张三");
- // // infos_list2[index] = "GO";
- // // DivPrintList(infos_list2);
- // // infos_list2.IndexOf("dnt");//不存在返回-1
- // // // ###########################################################
- // // // # 查询 in, not in, index, count
- // // // # # for扩展:https://www.cnblogs.com/dotnetcrazy/p/9102030.html#forelse
- // // // # names_list=["张三","李四","王二麻子"]
- // // var names_list=new List<string>(){"张三","李四","王二麻子"};
- // // // Console.WriteLine(names_list.Find(i=>i=="张三"));
- // // // Console.WriteLine(names_list.FirstOrDefault(i=>i=="张三"));
- // // Console.WriteLine(names_list.Exists(i=>i=="张三"));
- // // System.Console.WriteLine(names_list.Contains("张三"));
- // // // # #张三在列表中执行操作
- // // // # if "张三" in names_list:
- // // // # names_list.remove("张三")
- // // // # else:
- // // // # print(names_list)
- // // // # #查看"大舅子"不在列表中执行操作
- // // // # if "大舅子" not in names_list:
- // // // # names_list.append("大舅子")
- // // // # else:
- // // // # print(names_list)
- // // // # #查询王二麻子的索引
- // // // # print(names_list.index("王二麻子"))
- // // // names_list.IndexOf("王二麻子");
- // // // # print(names_list.count("大舅子"))
- // // // # print(names_list.count("逆天"))
- // // // Console.WriteLine(names_list.Count);
- // // // ###########################################################
- // // // # # 排序(sort, reverse 逆置)
- // // // # num_list=[1,3,5,88,7]
- // // var num_list = new List<object>() { 1, 3, 5, 88, 7 };
- // // // # #倒序
- // // // # num_list.reverse()
- // // // # print(num_list)
- // // num_list.Reverse();
- // // DivPrintList(num_list);
- // // // # # 从小到大排序
- // // // # num_list.sort()
- // // // # print(num_list)
- // // num_list.Sort();
- // // DivPrintList(num_list);
- // // // # # 从大到小
- // // // # num_list.sort(reverse=True)
- // // // # print(num_list)
- // // num_list.Sort();
- // // num_list.Reverse();
- // // DivPrintList(num_list);
- // // // # ###########################################################
- // // // # #列表嵌套(列表也是可以嵌套的)
- // // // # num_list2=[33,44,22]
- // // // # num_list.append(num_list2)
- // // // # print(num_list)
- // // var num_list2 = new List<object>() { 33, 44, 22,new List<object>(){11,55,77} };
- // // DivPrintList(num_list2);//可以定义多维数组来支持 num_list2[i][j]
- // // // # for item in num_list:
- // // // # print(item)
- // // // # ###########################################################
- // // // # # 引入Null==>None
- // // // # a=[1,2,3,4]
- // // // # b=[5,6]
- // // // # a=a.append(b)#a.append(b)没有返回值
- // // // # print(a)#None
- // #endregion
- // // Console.Read();
- // }
- // private static void DivPrintList(List<object> list, string say = "")
- // {
- // Console.WriteLine($"\n{say}");
- // foreach (var item in list)
- // {
- // System.Console.Write($"{item} ");
- // }
- // }
- // }
- // }
NetCore Tuple:
- // using System;
- // namespace aibaseConsole
- // {
- // public static class Program
- // {
- // private static void Main()
- // {
- // #region Tuple
- // // C#中元组主要是方便程序员,不用自然可以.
- // // 元祖系:https://msdn.microsoft.com/zh-cn/library/system.tuple.aspx
- // // 值元组:https://msdn.microsoft.com/zh-cn/library/system.valuetuple.aspx
- // // 比如:当你返回多个值是否还用ref out 或者返回一个list之类的?
- // // 这些都需要先定义,比较麻烦.元祖在一些场景用的比较多 eg:
- // // 初始化
- // // var test_tuple = ("萌萌哒", 1, 3, 5, "加息", "加息"); //这种方式就是valueTuple了
- // // test_tuple.Item1 = "ddd";//可以修改值
- // // test_tuple.GetType();
- // // test_tuple.itemxxx //获取值只能通过itemxxx
- // var result = GetCityAndTel(); //支持async/await模式
- // var city = result.city;
- // var tel = result.tel;
- // // 拆包方式:
- // var (city1, tel1) = GetCityAndTel();
- // #endregion
- // // Console.Read();
- // }
- // // public static (string city, string tel) GetCityAndTel()
- // // {
- // // return ("北京", "110");
- // // }
- // // 简化写法
- // public static (string city, string tel) GetCityAndTel() => ("北京", "110");
- // }
- // }
NetCore Dict:
- using System;
- using System.Collections.Generic;
- namespace aibaseConsole
- {
- public static class Program
- {
- private static void Main()
- {
- #region Dict
- // infos_dict={"name":"dnt","web":"dkill.net"}
- // # # 遍历
- // # for item in infos_dict.keys():
- // # print(item)
- // # for item in infos_dict.values():
- // # print(item)
- // # for item in infos_dict.items():
- // # print("Key:%s,Value:%s"%(item[0],item[1]))
- // # #每一次相当于取一个元组,那可以用之前讲的例子来简化了:c,d=a #等价于:c=a[0] d=a[1]
- // # for k,v in infos_dict.items():
- // # print("Key:%s,Value:%s"%(k,v))
- var infos_dict = new Dictionary<string, object>{
- {"name","dnt"},
- {"web","dkill.net"}
- };
- // foreach (var item in infos_dict.Keys)
- // {
- // System.Console.WriteLine(item);
- // }
- // foreach (var item in infos_dict.Values)
- // {
- // System.Console.WriteLine(item);
- // }
- // foreach (KeyValuePair<string, object> kv in infos_dict)
- // {
- // // System.Console.WriteLine("Key:%s,Value:%s",(kv.Key,kv.Value));
- // System.Console.WriteLine($"Key:{kv.Key},Value:{kv.Value}");
- // }
- // // # # 增加 修改 (有就修改,没就添加)
- // // # # 添加
- // // # infos_dict["wechat"]="lll"
- // // # print(infos_dict)
- // infos_dict.Add("wechat", "lll");
- // infos_dict["wechat1"] = "lll";
- // // # # 修改
- // // # infos_dict["wechat"]="dotnetcrazy"
- // // # print(infos_dict)
- // infos_dict["wechat"] = "dotnetcrazy";
- // // # # 删除
- // // # del infos_dict["name"]
- // // # del infos_dict["dog"] #不存在就报错
- // // # print(infos_dict)
- // infos_dict.Remove("name");
- // infos_dict.Remove("dog");
- // // # #清空列表内容
- // // # infos_dict.clear()
- // // # print(infos_dict)
- // infos_dict.Clear();
- // // # # 删除列表
- // // # del infos_dict
- // # 查询
- // infos_dict["name"]
- // infos_dict["mmd"] #查不到就异常
- // infos_dict.get("name")
- // infos_dict.get("mmd")#查不到不会异常
- Console.WriteLine(infos_dict["name"]);
- // Console.WriteLine(infos_dict["mmd"]); //#查不到就异常
- // 先看看有没有 ContainsKey(key),看值就 ContainsValue(value)
- if (infos_dict.ContainsKey("mmd")) Console.WriteLine(infos_dict["mmd"]);
- // # 查看帮助
- // help(infos_dict)
- // len(infos_dict) #有几对key,value
- Console.WriteLine(infos_dict.Count);
- #endregion
- // Console.Read();
- }
- }
- }
Python3 与 NetCore 基础语法对比(List、Tuple、Dict、Set专栏)的更多相关文章
- Python3 与 C# 面向对象之~继承与多态 Python3 与 C# 面向对象之~封装 Python3 与 NetCore 基础语法对比(Function专栏) [C#]C#时间日期操作 [C#]C#中字符串的操作 [ASP.NET]NTKO插件使用常见问题 我对C#的认知。
Python3 与 C# 面向对象之-继承与多态 文章汇总:https://www.cnblogs.com/dotnetcrazy/p/9160514.html 目录: 2.继承 ¶ 2.1.单继 ...
- Python3 与 NetCore 基础语法对比(Function专栏)
Jupyter最新排版:https://www.cnblogs.com/dotnetcrazy/p/9175950.html 昨晚开始写大纲做demo,今天牺牲中午休息时间码文一篇,希望大家点点赞 O ...
- Python3 与 NetCore 基础语法对比(就当Python和C#基础的普及吧)
Jupyter排版:https://www.cnblogs.com/dotnetcrazy/p/9102030.html 汇总系列:https://www.cnblogs.com/dunitian/p ...
- Python3 与 NetCore 基础语法对比(String专栏)
汇总系列:https://www.cnblogs.com/dunitian/p/4822808.html#ai Jupyter排版:https://www.cnblogs.com/dunitian/p ...
- Python3 与 C# 基础语法对比(就当Python和C#基础的普及吧)
文章汇总:https://www.cnblogs.com/dotnetcrazy/p/9160514.html 多图旧排版:https://www.cnblogs.com/dunitian/p/9 ...
- Python3 与 C# 基础语法对比(Function专栏)
Code:https://github.com/lotapp/BaseCode 多图旧版:https://www.cnblogs.com/dunitian/p/9186561.html 在线编程: ...
- Python3 与 C# 基础语法对比(List、Tuple、Dict、Set专栏)
Code:https://github.com/lotapp/BaseCode 多图旧版:https://www.cnblogs.com/dunitian/p/9156097.html 在线预览: ...
- Python3 与 C# 基础语法对比(String专栏)
Code:https://github.com/lotapp/BaseCode 多图旧排版:https://www.cnblogs.com/dunitian/p/9119986.html 在线编程 ...
- python3笔记<一>基础语法
随着AI人工智能的兴起,网络安全的普及,不论是网络安全工程师还是AI人工智能工程师,都选择了Python.(所以本菜也来开始上手Python) Python作为当下流行的脚本语言,其能力不言而喻,跨平 ...
随机推荐
- sed命令实现文件内容替换总结案例
sed -i "s@AAAAA@BBBBB@g" /home/local/payment-biz-service/env/test.txt sed -i "s#htxk. ...
- Java常用API——String字符串运算
一.字符串运算 String类 1.概述 String是特殊的引用数据类型,它是final类. 2.构造方法 String str = "abc"; 相当于: char date ...
- Codeforces gym 101291 M (最长交替子序列)【DP】
<题目链接> 题目大意:给你一段序列,要求你求出该序列的最长交替子序列,所谓最长交替子序列就是,这段序列的相邻三项必须是先递增再递减或者先递减再递增这样交替下去. 解题分析: 这与一道dp ...
- BOM 和 DOM
目录 一.BOM 1.什么是BOM 2. 浏览器内容划分 归BOM管的: 归DOM管的: 3. BOM常见方法 二.DOM 1 什么是DOM 2. DOM常见方法 一.BOM 1.什么是BOM BOM ...
- js异步梳理:1.从浏览器的多进程到JS的单线程,理解JS运行机制
大家很早就知道JS是一门单线程的语言.但是也时不时的会看到进程这个词.首先简单区分下线程和进程的概念 1. 简单理解进程 - 进程是一个工厂,工厂有它的独立资源 - 工厂之间相互独立 - 线程是工厂中 ...
- BZOJ-6-2460: [BeiJing2011]元素-线性基
链接 :https://www.lydsy.com/JudgeOnline/problem.php?id=2460 思路 :线性基不唯一,所以排序 进行贪心选择,价值最大的线性基, #include& ...
- asp.net core 依赖注入实现全过程粗略剖析(2)
接着 上篇 目前也算是交代清楚了相关的类.那么框架具体是如何来实例化的呢?整个的流程是怎么样的. 我们参考源码中的Test文件夹来看看: var collection = new ServiceCol ...
- Codeforces.1110E.Magic Stones(思路 差分)
题目链接 听dalao说很nb,做做看(然而不小心知道题解了). \(Description\) 给定长为\(n\)的序列\(A_i\)和\(B_i\).你可以进行任意多次操作,每次操作任选一个\(i ...
- BZOJ.4650.[NOI2016]优秀的拆分(后缀数组 思路)
BZOJ 洛谷 令\(st[i]\)表示以\(i\)为开头有多少个\(AA\)这样的子串,\(ed[i]\)表示以\(i\)结尾有多少个\(AA\)这样的子串.那么\(Ans=\sum_{i=1}^{ ...
- BZOJ.2115.[WC2011]Xor(线性基)
题目链接 \(Description\) 给定一张无向带边权图(存在自环和重边).求一条1->n的路径,使得路径经过边的权值的Xor和最大.可重复经过点/边,且边权和计算多次. \(Soluti ...