Skip to content

Commit

Permalink
Merge pull request #53 from NisanurBulut/dev-sayHiPython
Browse files Browse the repository at this point in the history
Dev say hi python
  • Loading branch information
NisanurBulut authored Jan 30, 2022
2 parents bbc9760 + 5c45b35 commit 731123e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,10 @@ The project topic is very simple: Users sign up for the application and see the

![SayHiVue](https://github.com/NisanurBulut/SayHiCode/blob/master/Trailers/Trailer_SayHiVue.gif)

### 14. SayHiPython
<hr>
<img align="left" width="120px" height="120px" src="https://github.com/NisanurBulut/SayHiCode/blob/master/Trailers/sayhi.png"><p>With this study, an introduction to OOP with python was made. Excel file reading and data processing were done.

## Helpfull Websites
[json-to-js](https://www.convertonline.io/convert/json-to-js) [json2ts](http://json2ts.com/) [fusioncharts](https://www.fusioncharts.com/) [React-Query-Tutorial](https://www.youtube.com/watch?v=XRbnuiAbV3g&list=PLzJ4DQ1UrlRb0XiN-vecbtZ31t-Q2Z6BD&ab_channel=boraoren) [Laravel-artisan-blog](https://www.yasird.com/laravel-5-artisan-nedir/) [MailTrap](https://mailtrap.io/) [HeroIcons](https://heroicons.com/)
[The Net Ninja- Laravel Tutorial](https://youtu.be/zckH4xalOns) [Quicksand](https://fonts.google.com/specimen/Quicksand) [MyColorSpace](https://mycolor.space/) [JokeAPI](https://v2.jokeapi.dev/joke/Any)
Expand Down
14 changes: 14 additions & 0 deletions SayHiPython/Book.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class Book:
def __init__(self, name, author, publish_date):
self.name = name
self.author = author
self.publish_date = publish_date

def change_publish_date(self, new_publish_date):
self.publish_date = new_publish_date

def change_name(self, new_name):
self.name = new_name

def get_book_info(self):
print(f"Book is {self.name} written by {self.author}. It is published at {self.publish_date}")
Binary file added Trailers/sayhi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 731123e

Please sign in to comment.