blob: cc1ad2bdcfebac5652171e62fae128565bb29ea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
def developer_greeting():
print("Greetings developer!")
class Person:
name = "Paris"
def greeting_1(self):
print(f"Hello from {self.name} !")
@staticmethod
def greeting_2():
print("Hi!")
|