from typing import Tuple, List, Dict
class Py3Dev:
pass
class Attributes(Py3Dev):
@property
def contact(self) -> Tuple[str, str, str, str]:
linkedin = "https://www.linkedin.com/in/yashvarshney17/"
instagram = "https://instagram.com/yashvarshney17"
website = "https://yashvarshney.in/"
email = "[email protected]"
return linkedin, instagram, website, email
@property
def life(self) -> Tuple[List[str], int]:
langs = ['Hindi', 'English']
age = 23
return langs, age
@property
def coding(self) -> Tuple[Dict[str, List[str]], List[str], List[str]]:
langs = {
'expert' : ['python'],
'intermediate': ['c++', 'js'],
'learning' : ['golang']
}
specialities = ['nlp', 'fullstack']
environment = ['vscode']
return langs, specialities, environment
-
Notifications
You must be signed in to change notification settings - Fork 0
py3-dev/py3-dev
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published