New to Python- calculating minimum, maximum, and average of a input list? Programming Software Development by jennga … min, max, and avg work into this. This is my cide thus far: def scores(): print('we are starting') count = int… Re: Tool Developement Programming Software Development by nottoshabi Could I cide something in Dev then copy paste to Visiual Studio. And compile? Re: Tool Developement Programming Software Development by John A >Could I cide something in Dev then copy paste to Visiual Studio. And compile? Generally yes, although converting resources such as dialogs are not the easiest... But regular code should not be an issue. Re: Gaps in IE Digital Media UI / UX Design by subhadip … the first image height. If you are duing DIV then cide will be . #top { background: utl(images/top-image.jpg) no… Re: how to use php with java script Programming Web Development by TopDogger … processes the script. You can use PHP to generate JavaScript cide, but other than that, they do not interact with each… Re: want code for.. Programming Software Development by Rama_Kamisetty I really unware of the code please help me out i m beginer of "C", if u provide me with cide,i can develop few of that sort pleae help me Re: New to Python- calculating minimum, maximum, and average of a input list? Programming Software Development by ddanbe Have two extra variables. Call them `min` and `max`. Give `min` initially an impossible "high" value, say 999. Give `max` initially an impossibl "low" value, say -1. Now after every input of a score, compare that score to `min` and `max`. Use lower than for `min` and higher than for `max`. After input of all scores `min` should … Re: New to Python- calculating minimum, maximum, and average of a input list? Programming Software Development by Gribouillis You must call the `min()` and `max()` functions with the argument `scoreList` instead of `count`. The same holds for `sum()` print ('Minimum: ', str(min(scoreList))) print ('Maximum: ', str(max(scoreList))) You can also improve the input part: scoreList.append(int(input('Enter score {:d}/{:d}: '.format(i, count))))