skrip python untuk mengurutkan konten file

with open('shopping.txt', 'r') as r:
    for line in sorted(r):
        print(line, end='')
vettiyankan