#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Patrik Kavan"
self.role = "Student"
self.language_spoken = ["SK", "CZ", "EN"]
self.programming_languages = ["Python", "C++", "C#", "JavaScript", "Java"]
self.operating_systems = ["Linux", "Windows"]
def say_hi(self):
print("Hello there.")
def get_info(self):
return self.name, self.role, self.language_spoken, self.programming_languages, self.operating_systems
me = SoftwareEngineer()
me.say_hi()
Popular repositories Loading
-
RPG-ascii-game-challenge
RPG-ascii-game-challenge PublicText-based RPG game with ASCII art, developed in various programming languages for easy execution in the command prompt (cmd).
Python 3
-
-
-
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.