Skip to content

Instantly share code, notes, and snippets.

@tamert
Created August 25, 2020 21:30
Show Gist options
  • Save tamert/6728bfda5a1a95cbc39ce8dd4dd1128c to your computer and use it in GitHub Desktop.
Save tamert/6728bfda5a1a95cbc39ce8dd4dd1128c to your computer and use it in GitHub Desktop.
python katılım
class Content:
def __init__(self, title, body):
self.title = title
self.body = body
def show(self):
return "baslik: %s icerik: %s" % (self.title, self.body)
news = Content("datca", "gercekten guzel bir sehir")
print(news.show())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment