The following is an introduction to the flexible usage of arrays and lists in Python: colon. It has a good reference value and I hope it will be helpful to everyone. Let’s take a look together
Let’s take a look at an example:
import numpy as np x=np.array([[1,2,3],[5,6,7],[7,8,9]]) print(x) Out[64]: array([[1, 2, 3], [5, 6, 7], [7, 8, 9]])
I think everyone should have no problem with the above results. It just defines an np array. The key is below
##
print(x[:,::-1]) Out[65]: [[3 2 1] [7 6 5] [9 8 7]]The above code implements a function, which is to arrange the array in reverse order in each dimension. How to understand this code? This is a problem I encountered when doing deep learning style migration, that is, the image rgb to bgr, and then I saw the code written by others. At first, I thought about using transpose. For the explanation of transpose, you can refer to my blog. I won’t explain it here, but it actually doesn’t work because transpose is dimension exchange. Then I thought Why can you use double colons? After reading for a while, I figured it out. Let me explain below: x[:,::-1], this code is actually the index, the first colon (comma (before) is obviously to select everything in the first dimension, that is, all the rows here, followed by two colons. Look at it this way, for example, our list y=[1,2,3],y[:2] The result is [1,2], that is, the first colon means starting from the first one. In fact, the first colon after our comma here also starts from the first one. What about the second colon? In fact, The second colon represents the end, y=[1,2,3],y[::], the result is [1,2,3], what is the third parameter? In fact, the third parameter is the step size. The length cannot be 0. If it is -1, it means reverse order. If it is 1, it means selecting all. If it is 2, it means taking every other one.
Look at the following code:
x=np.array([[1,2,3],[5,6,7],[7,8,9]]) print(x) print('------------') print(x[:,::-1]) print('------------') print(x[:,::1]) print('------------') print(x[:,::2]) print('------------') print(x[:,::3]) print('------------') print(x[:,::666666]) x=np.array([[1,2,3],[5,6,7],[7,8,9]]) print(x) print('------------') print(x[:,::-1]) print('------------') print(x[:,::1]) print('------------') print(x[:,::2]) print('------------') print(x[:,::3]) print('------------') print(x[:,::666666]) [[1 2 3] [5 6 7] [7 8 9]] ------------ [[3 2 1] [7 6 5] [9 8 7]] ------------ [[1 2 3] [5 6 7] [7 8 9]] ------------ [[1 3] [5 7] [7 9]] ------------ [[1] [5] [7]] ------------ [[1] [5] [7]]You can understand from the above code, what follows The reason why x[:,::666666] is as large as 66666 is to say that starting from the first one, the following represents the step size. For a step size as large as 66666, we can only take the first one. In fact, the step size starts from 3. From the beginning, you can only get the first one.The above usage is the same for the list. Related recommendations:
For loop and range built-in functions in python
The above is the detailed content of Arrays and lists in Python: introduction to the use of colons. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
