Published on January 26, 2024By DeveloperBreeze

Python Example: Sorting a List of Fruits

The following Python code demonstrates how to sort a list of fruits alphabetically using the sort() method:

# Define a list of fruits
fruits = ['apple', 'banana', 'cherry', 'date', 'fig']

# Sort the list alphabetically
fruits.sort()
print('Sorted Fruits:', fruits)

Comments

Please log in to leave a comment.

Continue Reading:

Append Data to JSON File

Published on January 26, 2024

jsonpython

Filtering and Selecting Elements in NumPy Array

Published on January 26, 2024

python

Reshape NumPy Array

Published on January 26, 2024

python

Create a NumPy 1D Array

Published on January 26, 2024

python

Calculate Sum of Numbers in Array

Published on January 26, 2024

csharp

Remove Duplicates from Array Using Set

Published on January 26, 2024

javascript

Find Maximum Number in Array Using Math.max

Published on January 26, 2024

javascript

Find Maximum Number in List Using max() Function

Published on January 26, 2024

python