header_1

VisitorsPythonJavaScriptPHP BadgeJavaC++HTML5MongoDBRedisMySQLDockerAmazon AWSMicrosoft AzureGoogle CloudGitGitHubGitLabPyCharmLinux BadgeWindows BadgeRaspberry Pi

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/python
# -*- coding: utf-8 -*-

class Student:

def __init__(self):
self.name = "Thanatos"
self.role = "Student"
self.interest="Cyber Security"
self.language_spoken = ["zh_CN", "en_US"]

def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")

me = Student()
me.say_hi()

🙋 My GitHub