Builded prototype of labels class

This commit is contained in:
2024-02-09 21:39:35 +01:00
parent 907da56d23
commit 187803d3f7
3 changed files with 39 additions and 0 deletions

19
test.py Normal file
View File

@@ -0,0 +1,19 @@
def test(string=str()):
#print(string)
return string
func_list = [ ]
i=0
for anzahl in range(50):
func_list.append(test("string-"+str(i)))
i += 1
for func in func_list:
if(func == "string-30"):
print("Ziel erreicht!")
print(func)
for count, func in enumerate(func_list):
print(count, func)