Firsh Push at 20241207

This commit is contained in:
2024-12-07 02:00:39 +08:00
commit 4bd0ae023d
122 changed files with 2804 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
class validation_the_enter_data:
def __init__(self) -> None:
pass
def validation_string(self, content, Comparison):
if content == Comparison:
return True
else:
return False
def validation_type(self, enter, Type: type):
if not isinstance(enter, Type):
return False
else:
return True