Metadata-Version: 2.1
Name: max-num
Version: 0.0.2
Summary: check max_number of arguments,list and dictionary
Author-email: Esharat Mia <esharat1992@gmail.com>
Project-URL: Homepage, https://github.com/esharat1992/max_num
Project-URL: Bug Tracker, https://github.com/esharat1992/max_num/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

Project description

example:

   from max_num.max import Max

   ## check maximum number of undefined arguments 
   check_max_value = Max.max_num(1,23,11,2,4)
   print(check_max_value)

   ## check maximum number of a dictionary 
   sample_dict = {
      "Esharat" : 200,
      "Masum": 300,
      "Liza": 100,
      "Mahreen": 50,
   }
   check_max_dict_value = Max.max_num_dict(sample_dict)
   for (Key,Value) in check_max_dict_value.items():
         print(f"{key} got highest score: {Value}")
   
   ## Check maximum number of a list
   sample_list = [12,23,34,12,4,7,9,19]
   check_max_list_value = Max.max_num_list(sample_list)
   print(f"The bigest number is {check_max_list_value}")
