Extension methods for built-in type in Python.
Project description
Extension methods for built-in type in Python.
Usage
Integer
(123).instance_of(int) (123).to_s() == “123” (123).to_f() == 123.0 and (123).to_f().instance_of(float)
float
(123.45).instance_of(float) (123.45).to_s() == “123.45” (123.45).to_i() == 123
str
“hello”.instance_of(str) “hello”.length == 5 “123”.to_i() == 123 “123.45”.to_f() == 123.45 “hello”.to_s() == “hello”
Unicode
u”hello”.instance_of(unicode) u”hello”.length == 5 u”123”.to_i() == 123 u”123.45”.to_f() == 123.45 u”hello”.to_s() == u”hello”
list
[1, 2, 3, 4].instance_of(list) [1, 2, 3, 4].length == 4 [1, 2, 3, 4].sum() == 10
tuple
(1, 2, 3, 4).instance_of(tuple) (1, 2, 3, 4).length == 4 (1, 2, 3, 4).sum() == 10
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file modernpy-0.1.0.zip
.
File metadata
- Download URL: modernpy-0.1.0.zip
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea9126d422996e2962dab36d17f029cf11eef77cf2b4f68dad93be6f8fc70695 |
|
MD5 | 1a1fa07e65a55a35383c16b5542dba6f |
|
BLAKE2b-256 | 75f02f6b6c1688afdf41afa84f8999f2c47ba065bd65cf242260b260380564d4 |