Skip to content

The code of the Python module stringf. Has functions on strings and English words

Notifications You must be signed in to change notification settings

MathdallasAlt/stringf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is the code of the Python module stringf. Download at https://pypi.org/project/stringf/

Functions-

New!

(Beta)

plural-Converts any word to plural form. e.g. plural("python")-"pythons"

list_to_str: Convert a list into a string e.g. ['p','y','t','h','o','n']-'python'

join: joins two words e.g. 'pyt','hon'-'python'

add: Like the join() functions but can join word after the letter at the specified position e.g. add("bore",1,"ef")-'before'

reverse: Reverses a string e.g. reverse("python")-"nohtyp"

More functions coming soon!