Function sort()

← Back to Module sorting



Module sorting → sort()

Description

Sort an array. Array elements will be arranged from lowest to highest

sort(data)


Parameters


Return Value


Usage Example

import sorting
 
data = [23, 9, 10, 2, 5]
sort(data)