def get_info(num):  info = {    1: "Gaming industry deals with game development, AR, VR, XR and using tools like unreal engines .",    2: "Writing industry includes developing articles and blogs that run traffic to your site.",    3: "Art industry involves creating fine arts, animations, and so much more.",    4: "Translation industry involves translating content between languages.",    5: "Programming industry focuses on software development and coding.",    6: "The health and fitness industry focuses on the physical and mental well-being of an individual and also talks about the nutrition and diet a person should follow.",  }  return info.get(num, "Industry not found.")inp = input("Enter a number (1-6) to know about the industy: ")num = int(inp)ind_desc = get_info(num)print(f"Industry {num}: {ind_desc}")