Hi everyone I'm new in python,
I need to read the first 10 line of multiple .txt files (from s1 to s50) in folder and save these values of each file in another file (separately) and then read the second 10 lines of (s1 to s50) then save the second 10 lines in separate files, and so on untill read all data of files.
To clarify more: every time 10 values from the files are read and they are stored in separate files
any help please?!

New or not, when you approach a problem that seems too big, make it smaller. Don't worry about reading 50 files right now. Start with 1 and then grow the solution as you learn.

And again, break down the problem to manageable steps. Don't try to read 10 lines, just learn how to open the file, read a single line and print that on the screen. Now you can research how to write that line to a file.

Keep expanding your skills and knowledge as you grow your solution. If you are stuck, then share your code, explain what isn't working for all to see and comment.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.