Skip to content
View faisalmukhtarch's full-sized avatar

Highlights

  • Pro

Block or report faisalmukhtarch

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

Pinned Loading

  1. RSS-feed-reader-in-terminal RSS-feed-reader-in-terminal Public

    Python

  2. print neatly IP & MAC Addresses in a... print neatly IP & MAC Addresses in a table format
    1
    mac1 = "Internet  10.220.88.29           94   5254.abbe.5b7b  ARPA   FastEthernet4"
    2
    mac2 = "Internet  10.220.88.30            3   5254.ab71.e119  ARPA   FastEthernet4"
    3
    mac3 = "Internet  10.220.88.32          231   5254.abc7.26aa  ARPA   FastEthernet4"
    4
    
                  
    5
    print('{:>20}'.format("IP ADDR"), end='')
  3. Simple random number generator and g... Simple random number generator and guessing game in Python
    1
    import random
    2
    i = random.randint(0, 10)
    3
    print("I am thinking of a number between 1 and 10")
    4
    while i in range(10):
    5
        print("Take a guess")
  4. Convert IP Address to Binary & hexad... Convert IP Address to Binary & hexadecimal
    1
    #!usr/bin/env python3
    2
    
                  
    3
    prompt = "Please enter an IP address: "
    4
    
                  
    5
    ip = input(prompt)