Deeply applying str across a data structure

Deeply applying str() across a data structure 1.2

Deeply applying str() across a data structure 1.2 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 645
  • Released: Jun 4, 2007

Deeply applying str() across a data structure 1.2 Description

The str() function in the standard library behaves in a slightly weird way when applied against lists: on each element of the list, the repr() is appended. In contrast, this module provides a deep_str() that deeply applies str() across lists. This module also provides utilities to develop custom str() functions.


Deeply applying str() across a data structure 1.2 Keywords

Deeply applying str across a data structure Bookmark

Hyperlink code:
Hyperlink for Forum code:

Deeply applying str() across a data structure 1.2 Script Download Notice

Top 4 Download periodically updates information of Deeply applying str() across a data structure 1.2 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. Deeply applying str() across a data structure 1.2 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Conversion to unicode or byte string

... built in function str() and unicode() return a string representation of the object in byte string and unicode string respectively. This script introduces an enhanced version of str() and ... used as handy functions to convert between byte string and unicode. This is especially useful in debugging when mixup of the string types is suspected. ...
Python

Convert a string into a raw string

This script contains a function that takes in an arbitrary string and converts it into its raw string equivalent. It is very useful when a user needs to input text and you want the raw equivalent to be used and not the ...
Python

Convert string to hex

Convert string to hex script converts each char to hex representation and back. ...
Python

Reversing a String by Words or Characters

Reversing a String by Words or Characters script allows you to reverse the characters or words of a string. ...
Python

Indices of a SubString in a Given String

This script uses string.index(sub) function which returns a list of indices of ALL occurances of a substring in the string. ...
Python