in python please
Posted: Sun May 15, 2022 12:28 pm
in python please
The following program aims to print out the maximal number of a list of numbers given by the user. Such a list is specified using Python syntax, for example [1,2,3,4) specifies a list of four integers 1, 2, 3, 4. When given this list, the program should print out max = 4 What should be the print statement at Line 2? 1 L - input ("Give a list of numbers, e.g. (1,2,3,4]") print. .) # print out the mox of the given list.
The following program aims to print out the maximal number of a list of numbers given by the user. Such a list is specified using Python syntax, for example [1,2,3,4) specifies a list of four integers 1, 2, 3, 4. When given this list, the program should print out max = 4 What should be the print statement at Line 2? 1 L - input ("Give a list of numbers, e.g. (1,2,3,4]") print. .) # print out the mox of the given list.