Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~255 People Reached
Favorite Forums
Favorite Tags
Member Avatar for RewindPlay

Using functions, how would I print the lowest, highest, and average of my PAY list? [CODE]try: text_file = open ("Pay.txt", "w") text_file.writelines(Pay) text_file.close() except (IOError): print 'Error opening/writing Pay.txt' try: text_file= open("Pay.txt","r") PAY= text_file.readlines() text_file.close() PAY.sort()[/CODE]

Member Avatar for vegaseat
-1
125
Member Avatar for RewindPlay

hello, I just signed up to ask...How would I store the information from my code(see below) into a object? I'll be naming the object employees. The code I have now executes this:(please tell me if there are any mistakes on the code I have so far) 1.Ask the user to …

Member Avatar for woooee
0
130