91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python 字符串 查找 基本操作

發布時間:2020-07-29 22:02:19 來源:網絡 閱讀:425 作者:堅韌的石頭 欄目:編程語言

個人博客首頁(點擊查看詳情) -- https://blog.51cto.com/11495268
個人微信公眾號(點擊查看掃描關注) -- https://blog.51cto.com/11495268/2401194

1、簡介

????字符串 相關操作 較多,本文 只簡單描述下 python 字符串 查找 相關的基礎操作
????

2、字符串 查找 內置函數

python 字符串 查找 基本操作

3、實例

????獲取 指定 公司 的相關信息(公司信息 格式 都一致)

????

3.1 字符串 格式

## 公司名:排名:薪資-所占比例
HUAWEI:0:20K-30.8% ZTE:1:15K-50.6% SUNING:3:13K:39.9%

????

3.2 偽代碼(思路)

查找 公司名 所在位置
從 公司名位置開始 查找 第一個 冒號 所在位置
從第一個 冒號 所在位置開始 查找 第二個 冒號 所在位置
從第二個 冒號 所在位置開始 查找 第一個 -號 所在位置
從第一個 -號 所在位置開始 查找 最近一個 空格 所在位置
    若 沒有 找到 最近一個 空格位置,那么 字符串長度 代表 索要獲取的位置(字符串結尾)

????

3.3 代碼

#! /usr/bin/env python2.7
#-*- coding: utf-8-*.

str = 'SUNING'
string = 'HUAWEI:0:20K-30.8% ZTE:1:15K-50.6% SUNING:3:13K-39.9%'
index_company = string.find(str, 0, len(string))
index_first = string.find(':', index_company, len(string))
index_sec = string.find(':', index_first + 1, len(string))
index_line = string.find('-', index_sec + 1, len(string))
index_null = string.find(' ', index_line + 1, len(string))
if index_null == -1 :
    index_null = len(string)
# print 'index_company:%d,index_first:%d,index_sec:%d,index_line:%d,index_null:%d\n' % (index_company,index_first,index_sec,index_line,index_null)

print '公司名:%s\t\n' % (string[(index_company):(index_first)])
print '公司排名:%s\t\n' % (string[(index_first + 1):(index_sec)])
print '公司平均薪資:%s\t\n' % (string[(index_sec + 1):(index_line)])
print '公司平均薪資所占百分比:%s\t\n' % (string[(index_line + 1):index_null])

????

3.4 執行結果

python 字符串 查找 基本操作

# python str_find_wl.py 
index_company:35,index_first:41,index_sec:43,index_line:47,index_null:53

公司名:SUNING  

公司排名:3  

公司平均薪資:13K  

公司平均薪資所占百分比:39.9%   
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

葫芦岛市| 吴桥县| 罗平县| 万荣县| 花莲市| 额尔古纳市| 敦化市| 安达市| 花莲市| 连云港市| 微博| 舞钢市| 沙雅县| 九江县| 牟定县| 鱼台县| 连州市| 雅安市| 靖州| 高碑店市| 南部县| 明星| 阿图什市| 修水县| 龙山县| 大埔县| 庆阳市| 永泰县| 庆安县| 深水埗区| 温宿县| 哈巴河县| 台湾省| 镇雄县| 湖州市| 临汾市| 仪陇县| 无为县| 靖边县| 祁东县| 玉田县|