I wrote (in Jupyter) a mother class (named Item) in a file named item and saved it in this path:
'C:\\Users\\Sareh\\Desktop\\New folder\\gg\\item.ipynb'
Now I wanted to write a child class of Item, therefore importing the item.ipynb file inside the child class file. Both of the files are in the same path. The path for child class is:
'C:\\Users\\Sareh\\Desktop\\New folder\\gg\\phone.ipynb'
but I get this error:
ModuleNotFoundError: No module named 'item'
I do not know where I am doing wrong. Here is my code:
from item import Item
class phone(amir):
def __init__(self, name:str, price:float,quantity:int,broken_phone=0):
super().__init__(
name,price,quantity
)
assert broken_phone>=0, f"broken_Phone {broken_phone} should be positive"
phone1=phone('jj',5,6,7)