内置函数 abs() divmod() input() open() staticmethod() all() enumerate() int() ord() str() any() eval() isinstance() pow() sum() basestring() execfile() is ...
分类:
编程语言 时间:
2020-05-18 16:41:02
阅读次数:
75
团队冲刺第七天: 题库后端继续: 1 import * as TypeORM from "typeorm"; 2 import Model from "./common"; 3 4 declare var syzoj, ErrorMessage: any; 5 6 import User from ...
分类:
其他好文 时间:
2020-04-26 21:22:27
阅读次数:
84
# Electron截屏功能 window下增加该功能,可以调用三方的exe文件然后通过node.js的原生模块,execFile启动该exe文件。 mac下则可以通过screencapture 来调用系统的截屏功能来实现 globalShortcut.register('CommandOrCont ...
分类:
其他好文 时间:
2020-04-21 15:00:19
阅读次数:
296
1.打开浏览器 最简单的方法: const cp = require('child_process') cp.exec('start http://127.0.0.1:8889/'); // 自动打开默认浏览器 另一种方法是安装open 依赖包: const open = require('open ...
分类:
其他好文 时间:
2020-03-14 17:02:59
阅读次数:
57
前言 python内置函数execfile 和 内置函数exec功能实际上都一样,不过函数execfile是python2.0版本,函数exec属于python3.0版本,在使用的时候注意区分一下,具体使用方法参考下面的详细介绍。 一.execfile/exec函数简介 由于现在的python2.0 ...
分类:
编程语言 时间:
2020-01-12 00:19:27
阅读次数:
105
本文链接:https://blog.csdn.net/pangzhaowen/article/details/80650478 展开 本文链接:https://blog.csdn.net/pangzhaowen/article/details/80650478 展开 本文链接:https://blo ...
分类:
编程语言 时间:
2019-12-15 16:45:25
阅读次数:
98
脚本编程 execfile('c:/*py') #括号里填要指定的py文件路径就可以执行了。 脚本中有中文,需要在开头加上 # coding=utf-8 表达式与操作符 专业术语,例如2+2,‘2’称为值,'+'为运算符,‘2+2’这个表达式是求值。 运算符,包括 赋值运算符: =简单的赋值运算 + ...
分类:
编程语言 时间:
2019-10-16 13:19:08
阅读次数:
200
1.这里要使用的execfile('a.py') 函数,执行写了引入模块的py。 例子: b.py内容如下: #-*- coding: UTF-8 -*-#调用函数apisys.path.append("/Users/kaibinliu/Desktop/appium_automation/Andro ...
分类:
其他好文 时间:
2019-03-01 14:18:57
阅读次数:
186
a=raw_input("input=") input=abc type(a) #<type 'str'> a=raw_input("input=") input=abc #会报错 class C(object): @staticmethod def f(): print("staticmethod ...
分类:
编程语言 时间:
2017-12-05 17:40:51
阅读次数:
235
linux下有多种方式运行python: linux下有多种方式运行python: 1. 命令行执行: 建立一个*.py文档,在其中书写python代码。之后,在命令行执行: $ python *.py 注意事项:1. 需要指明文件的绝对路径;2. 源代码中要指明输出,比如print 2. UNIX ...
分类:
编程语言 时间:
2017-11-10 15:18:39
阅读次数:
241