Page 1 of 1

in python please

Posted: Sun May 15, 2022 12:28 pm
by answerhappygod
in python please
In Python Please 1
In Python Please 1 (34.37 KiB) Viewed 67 times
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.