当前位置:网站首页>2021-03-16 comp9021 class 9 notes
2021-03-16 comp9021 class 9 notes
2022-06-24 08:23:00 【Purple cloud without dike】
List of articles
- slice function
- python Bring their own debug function
- p: Output information
- help : View help documents
- c: Continue to the next breakpoint
- b: Add Breakpoint
- n: Execution continues until the next line or end of the current function .
- !: Statement
- step: Stepping , Execute the next statement , Or enter the called function .
- return: Carry on , Until the current function returns .
- tbreak: Temporary breakpoint , Automatically delete after one execution .
slice function
Official documents :slice(start, stop[, step])
The first number is the starting point , The second number is the end point , The third number is the step size
- from 1 To 6, Take a point every two times

- The sliding window , And sum up - sliding window

- Find the largest sum and output

python Bring their own debug function
Official information :debugger
Other introductions :breakpoint() function
p: Output information
p a: Output a Value
help : View help documents
h Is shorthand.
View the help document for a command
see p, exit Documents
c: Continue to the next breakpoint
continue
b: Add Breakpoint
b: View the breakpoints currently added with the command
b n: In the n Line add breakpoint
b n, exp: Satisfy exp when , In the n Line add breakpoint
practice : In the 7 Line add breakpoint , Carry on , see i Value .
n: Execution continues until the next line or end of the current function .
stay for Use in circulation n
!: Statement
!a = 4: Direct to variable a The assignment is 4
step: Stepping , Execute the next statement , Or enter the called function .
Abbreviation :s
return: Carry on , Until the current function returns .
Abbreviation :r
tbreak: Temporary breakpoint , Automatically delete after one execution .
边栏推荐
- 51单片机_外部中断 与 定时/计数器中断
- Getting started with ffmpeg
- Question bank and simulation examination for operation certificate of refrigeration and air conditioning equipment in 2022
- Review SGI STL secondary space configurator (internal storage pool) | notes for personal use
- How to use the virtual clock of FPGA?
- C language_ Love and hate between string and pointer
- MySQL source and target table row count check
- LabVIEW查找n个元素数组中的质数
- Vscode topic recommendation
- 对于flex:1的详细解释,flex:1
猜你喜欢

根据网络上的视频的m3u8文件通过ffmpeg进行合成视频

About the iframe anchor, the anchor is offset up and down, and the anchor has page display problems Srcdoc problem of iframe

Live broadcast review | detailed explanation of koordinator architecture of cloud native hybrid system (complete ppt attached)

Swift extension networkutil (network monitoring) (source code)

Model effect optimization, try a variety of cross validation methods (system operation)

Small sample fault diagnosis - attention mechanism code - Implementation of bigru code parsing

Utilisation de la fermeture / bloc de base SWIFT (source)

疫情下更合适的开发模式

The first exposure of Alibaba cloud's native security panorama behind the only highest level in the whole domain

Écouter le réseau d'extension SWIFT (source)
随机推荐
Model effect optimization, try a variety of cross validation methods (system operation)
Synthesize video through ffmpeg according to m3u8 file of video on the network
论文笔记: 多标签学习 DM2L
1279_ Vsock installation failure resolution when VMware player installs VMware Tools
The article takes you to understand the security of Windows operating system and protect your computer from infringement
Robot acceleration level task priority inverse kinematics
2021-03-04 COMP9021第六节课笔记
Vulnhub target: boredhackerblog: social network
Unity culling related technologies
一文带你了解Windows操作系统安全,保护自己的电脑不受侵害
LabVIEW finds prime numbers in an array of n elements
487. 最大连续1的个数 II ●●
2022 PMP project management examination agile knowledge points (1)
Paper notes: multi label learning dm2l
Chart list Performance Optimization: minimum resource consumption in the visualization area
Small sample fault diagnosis - attention mechanism code - Implementation of bigru code parsing
LabVIEW查找n个元素数组中的质数
DHCP, TFTP Foundation
你还只知道测试金字塔?
3D数学基础[十七] 平方反比定理








