Commit 48080d74 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

added scratch

parent 9464bcbc
Pipeline #98 passed with stages
in 8 seconds
import numpy as np
def print_some_numbers(start: int, stop=10):
""" this function prints some numbers
Parameters
----------
start: int
start number
stop: int
stop number
Notes
-----
this algorithm ...
"""
for i in np.arange(start, stop):
print(i)
return
class AClass:
def __init__(self):
self.a = 1
def print_a(self):
if True:
print(self.a)
if __name__ == "__main__":
print_some_numbers(start=1, stop=5)
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment