總結分享Python冷門的技巧

2022-07-13 14:02:27
本篇文章給大家帶來了關於Python的相關知識,其中主要整理了冷門的技巧的相關問題,包括了first庫、tqdm庫、delattr、!cmd操作、this庫等等內容,下面一起來看一下,希望對大家有幫助。

【相關推薦:Python3視訊教學

first庫

沒錯,就是first,這是個庫的名稱,目前124個stars

first is an MIT-licensed Python package with a simple function that returns the first true value from an iterable, or None if there is none. If you need more power, you can also supply a key function that is used to judge the truth value of the element or a default value if None doesn’t fit your use case.

簡單來講就是會返回第一個正確的可遍歷物件。

如第一個例子,第一個正確的可遍歷物件為`77`

from first  import firstprint(first([0, None, False, 77,[], (), 42]))

第二個例子用了re正則,我在其基礎上進行改動,以便大家更容易理解。

import refrom first import first
re1 = re.compile('(.)b(.*)')re2 = re.compile('a(.*)')# re1,re2換位置結果變化m = first(regexp.match('abcwerfwer') for regexp in [ re2,re1])print(m)if not m:
   print('no match!')elif m.re is re1:
   print('re1', m.group(1))elif m.re is re2:
   print('re2', m.group(1))#<re.Match object; span=(0, 10), match='abcwerfwer'>#re2 bcwerfwer

re1,re2換位置結果變化

import refrom first import first
re1 = re.compile('(.)b(.*)')re2 = re.compile('a(.*)')m = first(regexp.match('abcwerfwer') for regexp in [re1, re2])print(m)if not m:
   print('no match!')elif m.re is re1:
   print('re1', m.group(1))elif m.re is re2:
   print('re2', m.group(1))#<re.Match object; span=(0, 10), match='abcwerfwer'>#re1 a

tqdm庫

這是一個非常有趣的庫,stars不算太多,但是可以給你平淡的程式碼生活中泛起一絲漣漪。
分享一段讀取資料後並插入資料的程式碼,我想將資料插入到df2中,只需在range前加一步即可實現視覺化,給你在枯燥的程式碼時光裡帶來一絲喜悅

from tqdm import tqdm# 還可以用以下辦法是一個道理# from tqdm import trange# for i in trange(0,len(year),96):print(len(year))for i in tqdm(range(0,len(year),96)):
        # print(temp[i:i+96],len(temp[i:i+96]))
        try:
                df2.loc[index,3:99] = list(np.insert(df2.values[:,3:99], index, values=temp[i:i+96], axis=0)[index])
                # print(temp[i:i+96])
                # df.insert(1, '0:00', value=temp[i:i+96], allow_duplicates=True)
                # print(index,'+',len(year))
        except Exception as e:
                pass
        index+=1

在這裡插入圖片描述

delattr

python內建屬性,用來刪除class類中的屬性,咱們以牛客網隨機一道題為例

在這裡插入圖片描述

ListNode類中只有一個__init__屬性,delattr函數就是人為刪去此屬性,在第一個a處會在控制檯列印self.val的值,但下一個a處就會出現TypeError: ListNode() takes no arguments,這是因為屬性__init__已經被刪除,就不需要傳入x值,所以出現報錯

class ListNode:
    def __init__(self, x):
        self.val = x
        self.next = None
        print(self.val)class Solution:
    def reverseBetween(self , head: ListNode, m: int, n: int) -> ListNode:
        a = ListNode(1)
        delattr(ListNode, '__init__')
        a = ListNode(1)# 報錯b= Solution()b.reverseBetween(1,2,3)

!cmd操作

控制檯輸入!cmd可以直接進入命令提示字元模式,spider和pycharm都可使用

在這裡插入圖片描述

this庫

這個庫恐怕00後全軍覆沒一首Python詩奉上

#分享一首詩給大家,每個版本都有import this

在這裡插入圖片描述

【相關推薦:Python3視訊教學

以上就是總結分享Python冷門的技巧的詳細內容,更多請關注TW511.COM其它相關文章!