Created
November 4, 2020 17:43
-
-
Save novasush/54c5f2eb8c3270231e709b1eaed4035f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class floatingrange(object): | |
def __init__(self, start=None, stop=None, decimal=0): | |
pass | |
def __str__(self): | |
pass | |
def __repr__(self): | |
pass | |
def __iter__(self): | |
"""Returns an iterable object | |
""" | |
pass | |
def __next__(self): | |
"""Returns next element | |
""" | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment