寻找特定的值

Posted Bruce.yin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了寻找特定的值相关的知识,希望对你有一定的参考价值。

 1 #!/usr/bin/env python
 2 # -*- coding: utf-8 -*-
 3 #查找列表中元素,移除每个元素的空格,并查找以 a或A开头 并且以 c 结尾的所有元素
 4 #先转换为字符串
 5 li = ["alec", " aric", "Alex", "Tony", "rain"]
 6 tu = ("alec", " aric", "Alex", "Tony", "rain")
 7 dic = {k1: "alex", k2:  aric,  "k3": "Alex", "k4": "Tony"}
 8 
 9 for z in li:
10     x = str(z.strip())
11     if x.startswith(a) or x.startswith(A) and x.endswith(c):
12         print(x)
13 for a in tu:
14      s = str(a.strip())
15      if s.startswith(a) or s.startswith(A) and s.endswith(c):
16          print(s)
17 #newdic = {}
18 for d,v in dic.items():
19     if v.startswith(a) or v.startswith(A) and v.endswith(c):
20         print(v)
21     #print(d,v)
22 for f in dic.values():
23     if f.startswith(a) or f.startswith(A) and f.endswith(c):
24         print(f)

 

以上是关于寻找特定的值的主要内容,如果未能解决你的问题,请参考以下文章

需要对特定 R 代码片段的解释

append() 在这个代码片段中是如何工作的?与特定变量混淆[重复]

根据字符串名称而不是列表视图项位置替换片段并启动活动

如何将列表视图中的数据从一个片段发送到另一个片段

android在特定片段中隐藏工具栏

索引数列中某一个位置的值,以及索引数列中某一个特定值的位置