iT邦幫忙

猴子 的所有最佳解答 2

python 「\b」左刪字元

我自己理解在 python 中 \b 並不是用來 刪除的 而是替換。比如:abc\b 不會刪除 c 還是 abc,但 abc\bd 會把 c 換成 d,最終會變...

*args 和 **kwargs 的使用時機

我比較常用到的地方是 class 的 super class A: def __init__(self, a, b = "b", c =...