JERRYLSU

Python - setdefault
by Jerry Su, post on Aug 26, 2021

Reason is the light and the light of life.

Read in 1 mins
NLP Unicode Tokenizer Mapping
by Jerry Su, post on Aug 20, 2021

Reason is the light and the light of life.

Read in 3 mins
Python Encode Decode
by Jerry Su, post on Aug 05, 2021

Reason is the light and the light of life.

Read in 1 mins
Python -m
by Jerry Su, post on Aug 05, 2021

Reason is the light and the light of life.

Read in 1 mins
Python Coroutine
by Jerry Su, post on Apr 02, 2021

Reason is the light and the light of life.

Read in 1 mins
Python Blinker
by Jerry Su, post on Mar 22, 2021

Reason is the light and the light of life.

Read in 1 mins
Python dataclasses
by Jerry Su, post on Jan 05, 2021

Reason is the light and the light of life.

Read in 3 mins
Python - typing
by Jerry Su, post on Jan 04, 2021

Reason is the light and the light of life.

Read in 1 mins
Python - Generator
by Jerry Su, post on Dec 30, 2020

    函数体中存在yield关键字,即为生成器。调用生成器函数会返回一个生成器对象。即生成器函数就是生成器工厂。

    生成器是迭代器。

    def …

    Read in 1 mins
    Python - Iterable vs Iterator
    by Jerry Su, post on Dec 30, 2020

    import re
    from collections.abc import Iterator, Iterable
    

    鸭子类型,通过协议实现

    1. Iterable

    可迭代协议: __iter__()

    import re
    
    class Sentence1:
        def __init__(self, text …

    Read in 2 mins