Skip to content
View under-script's full-sized avatar
๐Ÿ’ญ
I may be slow to respond.
๐Ÿ’ญ
I may be slow to respond.
Block or Report

Block or report under-script

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
under-script/README.md

Hi ๐Ÿ‘‹, I'm Abdulmajid

A passionate python backend developer from Uzbekistan

under-script

  • ๐ŸŒฑ Iโ€™m currently learning Django Rest Framework

  • ๐Ÿ’ฌ Ask me about Python, Aiogram, Docker, Django, DRF, Redis, Celery, Postgresql

  • ๐Ÿ“ซ To reach me https://t.me/toEpamMiddle

๐Ÿ’ป Tech Stack:

LINUX Python GIT GitHub Postgres Redis Django Docker AWS Nginx DjangoREST Postman Swagger

๐Ÿ“Š GitHub Stats:



under-script****


j j j j j j j j j j j j j j j j j j j j j j j j j

๐Ÿ‘๏ธ Number of visits:

Pinned

  1. Day 1 - Beginner - Working with Vari... Day 1 - Beginner - Working with Variables in Python to Manage Data
    1
    print("Hello World!")
  2. Day 2 - Beginner - Understanding Dat... Day 2 - Beginner - Understanding Data Types and How to Manipulate Strings
    1
    #Data Types
    2
    
                  
    3
    #String
    4
    
                  
    5
    "Hello"[4]
  3. Day 3 - Beginner - Control Flow and ... Day 3 - Beginner - Control Flow and Logical Operators
    1
    print("Welcome to the rollercoaster!")
    2
    height = int(input("What is your height in cm? "))
    3
    
                  
    4
    if height >= 120:
    5
        print("You can ride the rollercoaster!")
  4. Day 4 - Beginner - Randomisation and... Day 4 - Beginner - Randomisation and Python Lists
    1
    import random
    2
    
                  
    3
    randomInteger = random.randint(1, 10)
    4
    print(randomInteger)
    5
    
                  
  5. Day 5 - Beginner - Python Loops Day 5 - Beginner - Python Loops
    1
    #For Loop with Lists
    2
    fruits = ["Apple", "Peach", "Pear"]
    3
    for fruit in fruits:
    4
      print(fruit)
    5
      print(fruit + " Pie")