
My primary goal is to become Juniour Developer by the end of the next year. I am interested in developing the necessary set of skills in order to achive my goal. My main interest direction is front-end development. The reason why I am interested in this kind of development is simple: many times I have had to look for some application that could make easier certain aspect of my life. Unfortunately not always I had found exactly what I was looking for. Eventually an idea came to me that if I not able to find what I need than I should do it myself. But first of all I have to learn how to realize it.
# function that determines whether a string that contains only letters is an isogram. Letter case is ignored.
def is_isogram(string):
for letter in string:
count = 0
for i in string:
if i.upper() == letter.upper():
count += 1
if count > 1:
return False
return True
No official working experience. But I am eager to learn! My CV project
| Education, educational courses | Links |
|---|---|
| Master of Science, BNTU 2016, Power Engineering faculty | BNTU |
| Academy of Postgraduate education 2015, referent-translator of scientific and technical literature in English | APE |
| Udemy: Inroduction To Python Programming - Avinash Jain (EN) | Udemy |
| Introduction to Python. Microsoft.com (EN) | docs.Microsoft |
| Python for Beginners. Microsoft Developer (EN) | Microsoft.Youtube |
| Google for Education. Python (EN) | Developers.Google |