Answers for "how to sort numbers in a text file in python"

1

python script to sort file content

with open('shopping.txt', 'r') as r:
    for line in sorted(r):
        print(line, end='')
Posted by: Guest on October-28-2020

Code answers related to "how to sort numbers in a text file in python"

Python Answers by Framework

Browse Popular Code Answers by Language