官术网_书友最值得收藏!

Arrays

An array (or list in some scripting languages) is used to store a similar set of multiple values inside a single variable. This helps to ensure all data types with similar meanings are stored in a single variable, and also we can easily loop through these array objects to fetch the values stored in an array.

Consider the following example:

countries=["India","China","USA","UK"]
for specific country in countries
Perform action

As we can see in the variable declaration, now we are declaring a similar data type with a similar context or meaning by grouping them together and assigning them into a single variable. In our example, it's the country names all assigned to an array variable named countries. In the next line, we are now iterating using the loop method, and for every specific country in the list or array of countries, we will perform the action. In this case, the loop will be executed to perform the action for each country, from the country name India to the end of the country name UK.

Each value stored in an array is referred to as an element of the array. Additionally, an array can be easily sorted, which means irrespective of the order of the elements in the array, we can get a sorted list or array by calling some additional programming tasks.

Let's consider an example:

countries=["India", "China", "USA","UK"]
Sort (countries)

The result will be as follows:

countries=["China","India","UK",USA"]

The sort functionality ensured that all the elements inside the array are sorted alphabetically and stored in the sorted order.

主站蜘蛛池模板: 广德县| 水城县| 镇远县| 南安市| 惠安县| 金塔县| 伊通| 长白| 鄯善县| 从江县| 嘉义县| 和政县| 蒲城县| 广南县| 博爱县| 郎溪县| 额尔古纳市| 新余市| 新干县| 星子县| 兴和县| 扎鲁特旗| 康保县| 柳州市| 资兴市| 收藏| 延长县| 白山市| 剑阁县| 涞源县| 涡阳县| 福泉市| 左权县| 新田县| 盐津县| 北京市| 万安县| 蕲春县| 拜城县| 县级市| 珠海市|