Skip to content
Snippets Groups Projects
Commit cdcc7dd9 authored by Hatice Yildirim's avatar Hatice Yildirim
Browse files

Füge converter.py zu Develop-Branch hinzu

parent 2c06d96b
No related branches found
No related tags found
Loading
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
...@@ -29,7 +29,7 @@ class TestCounter (unittest.TestCase): ...@@ -29,7 +29,7 @@ class TestCounter (unittest.TestCase):
c=Counter() c=Counter()
res=c.count_ED ("Hallo") res=c.count_ED ("Hallo")
self.assertEqual(res,0) self.assertEqual(res,0)
def
if __name__=="__main__": if __name__=="__main__":
unittest.main() unittest.main()
#Meine Übung, um es zu verstehen!
class Employee:
def __init__(self, name, age):
self.name = name
self.age = age
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment