Python – list与字符串str相互转换方法总结
1 字符串str转list的方法总结 # -*- coding: utf-8 -*- if __name__ == '__main__': temp_str = '1once time is wasted2'; temp_list = list(temp_str) print(temp_list) …
- Python
- 2022-06-30
Python – 列表list遍历方法总结
1 列表list遍历的方法 1.1 按值遍历list # -*- coding: utf-8 -*- if __name__ == '__main__': my_list = ['hello','world','C++','python'] for item in my_list: index = …
- Python
- 2022-06-22
Duilib – RichEdit和List等控件增加垂直滚动条vscrollbar和水平滚动条hscrollbar
1 在RichEdit控件中增加垂直滚动条和水平滚动条失败,不显示滚动条 之前在富文本编辑框控件RichEdit中使用属性 vscrollbar="true" autovscroll="true" 中调用垂直滚动条与自动滚动属性,总是没有在RichEdit的控件里面看到垂直滚动条。这几天通过查看官方…
- Duilib
- 2021-11-22
Python – list/numpy/pytorch tensor相互转换
1 list与numpy相互转换 list转numpy import numpy as np if __name__ == '__main__': a = [1,2,3,4] n = np.array(a) print(n) numpy转list import numpy as np if __na…
- Python
- 2021-07-26