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 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

Introduction

Hey there 👋, I'm Abdulmajid

Below are a few links you can visit and some stats to look at too

Discord Youtube total stars followers

Total Count Hours Week

sponsors

What I'm Doing

  • 🔭 Working on Backend Development
  • 🌱 Learning FastAPI & more
  • 📫 How to contact me: under-script (Discord)

Languages and Tools

Currently using:

Also will use soon

Have used already

Want to try

My Stats:

streak

Pinned Loading

  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")