Skip to content
View guptayash's full-sized avatar
Working from home
Working from home
Block or Report

Block or report guptayash

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

  1. Simple-Blockchain Simple-Blockchain Public

    Python 2

  2. Complex Number package Complex Number package
    1
    import math
    2
    class complex_number:
    3
        def __init__(self,real_value,imag_value):
    4
            try:
    5
                self.real_value=int(real_value)