Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

How to find the max and min number written in a file separated each item by a new line.

How to find the max and min number written in a file separated each item by a new line.

Can you please provide a link to the code challenge and also your code? Thank you, alex

Good luck!

1 Answer

No it's not in the code challenge, But I found the solution.

My Code: f = open('num.txt', 'r') a_list = [] for num in f: number = int(num) a_list.append(number)

print(max(a_list))

Please review and let me know for some better alternatives