#!/usr/bin/python
# -*- coding: utf-8 -*-
class Profile:
def __init__(self):
self.name = "Arth"
self.position = "Software Engineer at Barclays"
self.university = "University of Nottingham"
self.course = "Computer Science"
self.currentProjects = "Path planning developer for Formula Student:AI"
self.interests = ["Running", "Biking", "Golf", "Hiking"]
def __str__(self):
return f"Hi, i am {self.name}, currently working as a {self.position}"
if __name__ == '__main__':
me = Profile()
print(me)
Popular repositories Loading
-
HackNotts-2023-Workshop
HackNotts-2023-Workshop PublicForked from Oliver-Malkin/HackNotts-2023-Workshop
Python
-
-
-
-
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.