This commit is contained in:
2026-08-10 09:59:42 +03:00
commit 9191242a93
13 changed files with 747 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
def format_quote(text:str)->str:
text = text.strip()
if not text.endswith((".","?","!")):
text += "."
return text.upper()