Skip to content

py3-dev/py3-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 

Repository files navigation

About Me

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

Skills

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published