码迷,mamicode.com
首页 >  
搜索关键字:crystal print control控件    ( 43728个结果
?linux基础命令 截取 cut
######cut -d 指定分隔符 -f 指定列数 1,2,3 [root@rongbiz002 26]# awk '{print $1}' /www/wwwlogs/c2p.rongbiz.com-access_log|head -n5 |cut -d '.' -f 1,2,3 112.64.5 ...
分类:系统相关   时间:2021-02-27 13:40:48    阅读次数:0
python常用字符串功能
2.25 python字符串(13个) 1.以XX开头 (startswith()) v1="我爱我的祖国" result = v1.startswith("我") #判断是否以“我”开头,如果是返回"true" print(result) #true #例 v1=input("请输入户籍所在地") ...
分类:编程语言   时间:2021-02-27 13:13:22    阅读次数:0
Python Mac Address Changer Script
# # +SCRIPT BY Alexander Ezharjan+ # # +date : 2020/12/12 + # # +contact : ezhar.cnblogs.com + # # import sys import os import time print( """ XX MMMM ...
分类:编程语言   时间:2021-02-27 13:11:28    阅读次数:0
Java(6):类型转换以及计算溢出问题
1 类型转换 ? 由于Java是强类型语言,所以要进行有些运算的时候,需要用到类型转换。运算中,不同类型的数据先转换为同一类型,然后进行运算。 低 高 byte,short,char > int > long > float > double 1.1 强制转换 由高到低 (类型)变量名 // 强制转 ...
分类:编程语言   时间:2021-02-27 13:11:10    阅读次数:0
class类反射的用法--getattr()
aa="test1" class A: def test1(self): print("test1") def test2(self): print("test2") def test3(self): print("test3") a=A() func=getattr(a,aa) func() #t ...
分类:其他好文   时间:2021-02-27 12:58:13    阅读次数:0
【Python】图片有效性管理
# -*- coding: UTF-8 -*- import os import imghdr def get_filelist(dir): for home, dirs, files in os.walk(dir): for filename in files: try: fullname = o ...
分类:编程语言   时间:2021-02-26 13:35:43    阅读次数:0
hello,world!程序员的第一步仪式感
hello,world! 创建文档 创建文档将后缀名改为.java 编写代码 public class helloworld{ public static void main(String[] args){ System.out.print("hello,world!"); }} 进入DOS命令窗口 ...
分类:其他好文   时间:2021-02-26 13:21:47    阅读次数:0
Python:列表(list)
一:作用 二:定义 三:类型转换 四:内置方法 一:列表类型的作用 如果需存多个值并按顺序取,那用list再合适不过了 二:列表类型的定义 l = [1,2,3,'a'] ##相当于l = list(1,2,3,'a') print(l)print(type(l)) 以上代码执行结果为: [1, 2 ...
分类:编程语言   时间:2021-02-26 13:20:23    阅读次数:0
模块二 GO语言进阶技术-GO语句及其执行规则(下)
在上一篇文章中,我们讲到了 goroutine 在操作系统的并发编程体系,以及在 Go 语言并发编程模型中的地位和作用等一系列内容,今天我们继续来聊一聊这个话题。 知识扩展 问题 1:怎样才能让主 goroutine 等待其他 goroutine? 我刚才说过,一旦主 goroutine 中的代码执 ...
分类:编程语言   时间:2021-02-26 13:15:22    阅读次数:0
python+selenium获取与使用百度登录cookie
from selenium import webdriver import time import json wb = webdriver.Chrome() wb.get('https://www.baidu.com') wb.maximize_window() time.sleep(3) # 登录 ...
分类:编程语言   时间:2021-02-26 12:56:21    阅读次数:0
43728条   上一页 1 ... 48 49 50 51 52 ... 4373 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!