Skip to content
View Alirezazamirian's full-sized avatar
🖥️
loading ....
🖥️
loading ....
Block or Report

Block or report Alirezazamirian

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Alirezazamirian/README.md

Hi it's Alireza Zamirian!

A passionate bachend developer

Personal info(python)

class Introduction:
    def __init__(self, name, programming_languages, interests, role, level, birthyear, university):
        self.name = name
        self.programming_languages = programming_languages
        self.interests = interests
        self.role = role
        self.level = level
        self.birthyear = birthyear
        self.university = university

    def get_introduction(self):
        introduction = (f"Hello! My name is {self.name} and was born in {self.birthyear}, "
                        f"also I graduated with {self.university} of computer engineering. "
                        f"I am proficient in the following programming languages: "
                        f"{', '.join(self.programming_languages)} as a {self.level}. My interests include "
                        f"{', '.join(self.interests)} and I currently work as a {self.role}.")
        return introduction

alirezazamirian = Introduction("Alireza Zamirian", ["Python", "Golang"],
                       ["server-side development", "technology"],
                       "back-end developer", "Junior", 2001, 'bachelor')

print(alirezazamirian.get_introduction())

personal info(golang)

package main

import (
	"fmt"
)

type Introduction struct {
	Name                 string
	ProgrammingLanguages []string
	Interests            []string
	Role                 string
	Level                string
	Age                  int
	University           string
}

func main() {
	alirezazamirian := Introduction{
		Name:                 "Alireza Zamirian",
		ProgrammingLanguages: []string{"Python", "Golang"},
		Interests:            []string{"server-side development", "technology"},
		Role:                 "back-end developer",
		Level:                "Junior",
		Age:                  23,
		University:           "bachelor",
	}
	fmt.Println(alirezazamirian.Name, alirezazamirian.ProgrammingLanguages,
		alirezazamirian.Interests, alirezazamirian.Role, alirezazamirian.Level,
		alirezazamirian.Age, alirezazamirian.University)
}

contact me

Languages and Tools:


Top Langs

Pinned

  1. test_mobile_shop test_mobile_shop Public

    an e-commerce website which was deployed on python anywhere to be shown as a test website in case of pruchasing website

    HTML 2