Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 544 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 544 Bytes

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!