#!/usr/bin/env python # coding: utf-8 # # create a python function that return maximum number of the following numbers: # # 2000,10000,500000,1000000,20000000 # In[45]: nums = [2000,10000,500000,1000000,20000000] # In[46]: def max_nums(max_): max_ = max(max_) return max_ # In[47]: max_nums(nums) # In[ ]: