Convert a tuple of lists to a list.
Project description
write2list
A simple python package which accepts a Tuple of Lists and converts it to a List. I wrote this to learn how custom packages work in Python. Here is the quick difference between a Tuple and a List-
| Tuple | List |
|---|---|
| Immutable bindings | Mutable via Append and Extend |
How to use?
pip install write2list
# test.py
import write2list
exampleTuple=(["Hi I am the first example list"], ["123456"], ["Wow these are one too many lists for a simple example. Let's end this object here."])
resultList=write2list.create(exampleTuple)
print(resultList)
python test.py
['Hi I am the first example list', '123456', "Wow these are one too many lists for a simple example. Let's end this object here."]
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
write2list-1.1.tar.gz
(1.7 kB
view details)
File details
Details for the file write2list-1.1.tar.gz.
File metadata
- Download URL: write2list-1.1.tar.gz
- Upload date:
- Size: 1.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7df54ad666a785b77efe813dac8f66e723732c9a96a113d787c8bd3d2c8df498
|
|
| MD5 |
210b91340b1fe03b295dcf469320264b
|
|
| BLAKE2b-256 |
1fcc06189e4d98d2d3cb9daf04f6d8422500aa39e661711be317c0ebc5e055aa
|