All public logs

Combined display of all available logs of sona pona. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 08:19, 18 April 2024 Menasewi talk contribs created page User:Menasewi/tokiPonaWordlist.py (Created page with "<syntaxhighlight lang="python" line="1" start="1"> import re words = input("Input source text:\n") words = words.replace("- ", "") # Remove hyphenation words = re.split(r"[^A-Za-z]+", words) # Split by non-letter characters words = {i for i in words if i.islower()} # Remove words with caps, duplicates # Check for nonstandard words (not pu, ku suli, "majuna", or "su") allStandardWords = {"a", "akesi", "ala", "alasa", "ale", "ali", "anpa", "ante", "anu", "awen", "e", "en...")