Advertisement
Nonplussed

DisplayStringsFromItemsDict.py

Dec 11th, 2020 (edited)
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.05 KB | None | 0 0
  1. def create_displaystring_for_item_data(item_name: str, item_price: int, length_of_longest_item_name: int) -> str:
  2.     """
  3.    Helper function for the main function, get_displaystrings_from_items_dict().
  4.  
  5.    :param item_name                  : Name of this item, in string
  6.    :param item_price                 : Price of this item, in int
  7.    :param length_of_longest_item_name
  8.    :return: Display string for this item
  9.    """
  10.     length_of_whitespace_after_item_name = 5 + length_of_longest_item_name - len(item_name)
  11.  
  12.     return ''.join((
  13.         item_name,
  14.         ' ' * length_of_whitespace_after_item_name,
  15.         f'${item_price}/Year'
  16.     ))
  17.  
  18.  
  19. def get_displaystrings_from_items_dict(items_data_dict: dict[str, int]):
  20.     """
  21.    Given a dictionary that stores the basic data of an item: {item_name : item_price},
  22.    this function returns a dictionary associating each item_name to a display string
  23.    to be used in the shop user-interface.
  24.  
  25.    :param items_data_dict: A dictionary associating an item_name to an item_price
  26.    :return: A dictionary associating an item_name to item_displaystring
  27.    """
  28.     displaystrings = {}
  29.  
  30.     # This is used by the helper-function
  31.     length_of_longest_item_name = 0
  32.     for item_name, item_price in items_data_dict.items():
  33.         if len(item_name) > length_of_longest_item_name:
  34.             length_of_longest_item_name = len(item_name)
  35.  
  36.     for item_name, item_price in items_data_dict.items():
  37.         displaystrings[item_name] = create_displaystring_for_item_data(
  38.             item_name,
  39.             item_price,
  40.             length_of_longest_item_name
  41.         )
  42.  
  43.     return displaystrings
  44.  
  45.  
  46. def run():
  47.     sample_items_dict= {
  48.         'Alfa-Romero Giulia': 13495,
  49.         'Alfa-Romero Stelvio': 16500,
  50.         'Alfa-Romero Quadrifoglio': 16500,
  51.         'Audi 100 Ls': 13950,
  52.         'Audi 100Ls': 17710
  53.     }
  54.  
  55.     displaystrings = get_displaystrings_from_items_dict(sample_items_dict)
  56.  
  57.     for item_name, item_displaystring in displaystrings.items():
  58.         print(item_displaystring)
  59.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement