python 城市身份证代号

news/2025/1/12 18:42:46/

城市身份证代号

利用城市对应的身份编号的id字符串分别放在两个列表中
城市名和编号对应

方法一(19软件91张桂旺)
id="4301,长沙市;4302,株洲市;4303,湘潭市;4304,衡阳市;4305,邵阳市;4306,岳阳市;4307,常德市;4308,张家界市;4309,益阳市;4310,郴州市;4311,永州市;4312,怀化市;4313,娄底市;4321,株洲市;4322,岳阳地区;4323,益阳市;4325,娄底市;4326,邵阳市;4327,衡阳市;4328,郴州市;4329,永州市;4330,怀化市;"
newstr_id=id.replace(";",",")
newstr_id02=newstr_id.split(',')
#print(newstr_id)cityNO=[]
cityName=[]for sub_str in newstr_id02:if sub_str !="":if sub_str.isdigit(): #isdigit(),判断是不是为数字cityNO.append(sub_str)else:cityName.append(sub_str)#print(type(cityNO))
print(cityNO)  #把内容打印出来#print(type(cityName))
print(cityName)  #把内容打印出来#方法二
import re #导入正则表达模块str_id="4301,长沙市;4302,株洲市;4303,湘潭市;4304,衡阳市;4305,邵阳市;4306,岳阳市;\
4307,常德市;4308,张家界市;4309,益阳市;4310,郴州市;4311,永州市;4312,怀化市;4313,娄底市;\
4321,株洲市;4322,岳阳地区;4323,益阳市;4325,娄底市;4326,邵阳市;4327,衡阳市;\
4328,郴州市;4329,永州市;4330,怀化市;"#数值匹配
cityID=re.findall("\d{4}",str_id)#中文字符匹配
cityName=re.findall("[\u4e00-\u9fa5]+",str_id)
print(cityID)
print(cityName)

http://www.ppmy.cn/news/488822.html

相关文章

HDU 4310 贪心算法 C++版

Problem - 4310 (dingbacode.com)https://acm.dingbacode.com/showproblem.php?pid4310当然是先选择攻击值最高的打了,一开始这么想,但是错了,因为攻击值高的可能血量也很高,很难打败。 所以,应该按照Dps/Hp从高到低…

subplot()函数--Matplotlib

划分画布的主要函数(第一部分)–subplot函数 首先引入一个概念:子区:顾名思义就是将画布分成若干个子画布,这些子画布构成绘图区域,在这些 绘图区域上分别绘制图 形,实现一张画布多张图形分区域…

hdu(4310)

题目&#xff1a; http://acm.hdu.edu.cn/showproblem.php?pid4310 #include<iostream> #include <stdio.h> #include<string.h> #include<algorithm> using namespace std; struct node{int dps;int hp;friend booloperator<(constnode a,const n…

AcWing——4310.树的DFS

4310. 树的DFS - AcWing题库 给定一棵 n 个节点的树。 节点的编号为 1∼n&#xff0c;其中 1 号节点为根节点&#xff0c;每个节点的编号都大于其父节点的编号。 现在&#xff0c;你需要回答 q 个询问。 每个询问给定两个整数 ui,ki。 我们希望你用 DFS&#xff08;深度优先搜索…

3401

数据结构实验之排序四&#xff1a;寻找大富翁 Time Limit: 200 ms Memory Limit: 512 KiB Submit Statistic Discuss Problem Description 2015胡润全球财富榜调查显示&#xff0c;个人资产在1000万以上的高净值人群达到200万人&#xff0c;假设给出N个人的个人资产值&…

HDU-4310-HERO

原题&#xff1a; When playing DotA with god-like rivals and pig-like team members, you have to face an embarrassing situation: All your teammates are killed, and you have to fight 1vN. There are two key attributes for the heroes in the game, health point …

hdu 4310 Hero

hdu 4310 Hero 题目链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid4310 贪心水 题目大意&#xff1a;以DotA为背景&#xff0c;英雄PK一对多&#xff0c;我方英雄不死&#xff0c;问杀死敌方所有英雄的时候&#xff0c;我方min英雄战损&…

CVE-2021-4034:Linux Polkit 权限提升漏洞复现及修复

CVE-2021-4034&#xff1a;Linux Polkit 权限提升漏洞复现及修复 本文仅为验证漏洞&#xff0c;在本地环境测试验证&#xff0c;无其它目的 CVE 编号&#xff1a; CVE-2021-4034 漏洞说明&#xff1a; 近期&#xff0c;国外安全研究团队在 polkit 的 pkexec 中发现存在的本地…