mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
Initial commit
This commit is contained in:
10
venv/Lib/site-packages/blank/blank_func.py
Normal file
10
venv/Lib/site-packages/blank/blank_func.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
|
||||
def reverse(value):
|
||||
if not isinstance(value, str):
|
||||
return None
|
||||
result = ''
|
||||
for i in reversed(range(len(value))):
|
||||
result += value[i]
|
||||
return result
|
Reference in New Issue
Block a user