This website works better with JavaScript
Startseite
Erkunden
Hilfe
Anmelden
radu
/
python-tutorials
Beobachten
1
Favorit hinzufügen
0
Fork
0
Dateien
Issues
0
Pull-Requests
0
Wiki
Struktur:
6e480c43a7
Branches
Tags
master
python-tutor...
/
programs
/
oop_simplestclass.py
oop_simplestclass.py
63 B
Verlauf
Originalformat
1
2
3
4
5
6
class Person:
pass # An empty block
p = Person()
print(p)