You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Integrated init functionality, based on user input
"""INIT THE OPERATION"""create_new_subcategory()
print("What are you going to do?\n")
print("1.Create a new category\n2.Create a new subcategory\n3.Create a new item\n")
user_input=int(input())
ifuser_input==1:
create_new_category()
elifuser_input==2:
create_new_subcategory()
elifuser_input==3:
create_new_items()
Python script which manages some basic operations:
The text was updated successfully, but these errors were encountered: