Skip to content

Instantly share code, notes, and snippets.

@novasush
Created November 4, 2020 17:43
Show Gist options
  • Save novasush/54c5f2eb8c3270231e709b1eaed4035f to your computer and use it in GitHub Desktop.
Save novasush/54c5f2eb8c3270231e709b1eaed4035f to your computer and use it in GitHub Desktop.
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