Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于在 python 中一切都是对象,甚至是文字,我们通常可以直接在文字上调用方法。
前任:
'hello'.upper()
从理论上讲,int 字面量似乎应该允许同样的事情
4.bit_length()
但是,这不起作用,我不知道为什么。有任何想法吗?谢谢!