
python
文章平均质量分 86
seamanj
这个作者很懒,什么都没留下…
展开
-
'&' and 'and' difference in python
idx_b = data[:,1] == 0 and data[:,4] == 1用and会提示错误, 因为and 最终只给定一个bool值, 要么用.all() 或 .any()所以这里用& 是正确, 会给定一个bool值的array, 它是elementwise的https://stackoverflow.com/questions/10062954/valueerror-th...原创 2020-03-18 23:34:40 · 220 阅读 · 0 评论 -
search element in list and narray
Python List index()The index() method searches an element in the list and returns its index.In simple terms, the index() method finds the given element in a list and returns its position.If the sam...原创 2020-03-18 22:58:28 · 176 阅读 · 0 评论 -
indexing in narray
def test(): a = np.array([[ 0, 1, 2], [ 3, 4, 5], [ 6, 7, 8]]) print(a) print('\n') print(a[0:2,:]) # index the first two rows print('\n')...原创 2020-03-18 22:48:19 · 135 阅读 · 0 评论 -
File "/usr/bin/pip3", line 9, in <module> from pip import main ImportError: cannot import name
File “/usr/bin/pip3”, line 9, in from pip import mainImportError: cannot import name ‘main’https://askubuntu.com/questions/1025793/running-pip3-importerror-cannot-import-name-mainsolution :The bu...原创 2019-11-12 21:02:42 · 306 阅读 · 0 评论 -
how to switch between python3.5 and python3.6
http://ubuntuhandbook.org/index.php/2017/07/install-python-3-6-1-in-ubuntu-16-04-lts/转载 2019-10-28 01:34:29 · 189 阅读 · 0 评论 -
how to install tensorflow-gpu==1.12.0
https://stackoverflow.com/questions/38896424/tensorflow-not-found-using-pipfirst, you need to downgrade python3.7 or higher to python3.6conda install python=3.6.8then you dopip3 install tensorflo...原创 2019-10-18 17:41:13 · 4737 阅读 · 1 评论 -
using logging in python
import logginglogger = logging.getLogger('simple_example')logger.setLevel(logging.DEBUG)# create file handler which logs even debug messagesfh = logging.FileHandler('spam.log')fh.setLevel(loggin...转载 2019-10-15 12:18:11 · 120 阅读 · 0 评论 -
fix .mesh file generated by tetgen to fit igllib
f_in = open("character2_5000.1.mesh") f_out = open("character2_5000.2.mesh", "w") lines = f_in.readlines()start = Falsenum = -1for line in lines: if not(start): f_out.wr原创 2017-01-24 22:19:30 · 405 阅读 · 0 评论 -
暴力破解黄巴登录网站
在APP上申请了一个黄巴帐号,由于email输错了,导致买了七天的票不能使用,想找回, 公司却说只能找回密码,不能找回帐号,黄巴的网站也像一坨屎,居然email不经过验证直接可以用,导致你输错了都不知道,于是不甘心白白亏掉自己的12镑于是决定,暴力破解之。先用Python生成帐号字典:import osfrom string import ascii_lowercase原创 2016-12-22 10:56:17 · 18101 阅读 · 2 评论 -
MULTITHREADING - PRODUCER AND CONSUMER WITH QUEUE
QueueIn this chapter, we'll implement another version of Producer and Consumer code with Queue(see Condition objects with producer and consumer).In the following example, the Consumer and Pr转载 2016-12-22 21:37:11 · 390 阅读 · 0 评论 -
Multithread to read one file
import threadingimport Queue#Number of threadsn_thread = 5#Create queuequeue = Queue.Queue()class ThreadClass(threading.Thread): def __init__(self, queue): threading.Thread.__init_原创 2016-12-22 21:37:58 · 443 阅读 · 0 评论 -
python多线程
线程和进程计算机,用于计算的机器。计算机的核心是CPU,在现在多核心的电脑很常见了。为了充分利用cpu核心做计算任务,程序实现了多线程模型。通过多线程实现多任务的并行执行。现在的操作系统多是多任务操作系统。每个应用程序都有一个自己的进程。操作系统会为这些进程分配一些执行资源,例如内存空间等。在进程中,又可以创建一些线程,他们共享这些内存空间,并由操作系统调用,以便并行计算。转载 2016-12-22 11:21:13 · 808 阅读 · 0 评论 -
Python-第三方库requests详解
Requests 是用Python语言编写,基于 urllib,采用 Apache2 Licensed 开源协议的 HTTP 库。它比 urllib 更加方便,可以节约我们大量的工作,完全满足 HTTP 测试需求。Requests 的哲学是以 PEP 20 的习语为中心开发的,所以它比 urllib 更加 Pythoner。更重要的一点是它支持 Python3 哦!Beautifu转载 2016-12-21 23:51:03 · 768 阅读 · 0 评论 -
add line order to each line and remove the last match of each line
import ref_in = open("C:/work_files/libigl/tutorial/shared/male1.tgf") f_out = open("C:/work_files/libigl/tutorial/shared/male1.o.tgf", "w") for row in range(1,17914): line = f_in.readline原创 2016-06-20 18:03:09 · 472 阅读 · 0 评论 -
4.4 - For Loops
import maya.cmds as cmdsimport maya.OpenMaya as omsel = cmds.ls(sl=True)children = cmds.listRelatives(sel, children = True)frame = cmds.currentTime(query = True)if sel: for child in childre原创 2015-11-19 01:40:50 · 389 阅读 · 0 评论 -
how to clear screen in python shell
import osos.system('cls') # for Windowsos.system('clear') # for Linux/OS X原创 2016-03-03 22:03:47 · 920 阅读 · 0 评论 -
read numbers from file and exchange their positions then write into another file
Recently I have been trying to implement the paper named "hierarchical position based dynamics", one of the meshes the author used is very regular like the picture below:but the off file in CGAL原创 2016-03-04 00:30:16 · 474 阅读 · 0 评论 -
file handling in python
1. read file and output alllines = open("1.txt").readlines()for l in lines[:]: print "%s" % l,原创 2016-03-03 22:14:40 · 541 阅读 · 0 评论 -
search vs. match
7.2.5.3. search() vs. match()Python offers two different primitive operations based on regular expressions: re.match() checks for a match only at the beginning of the string, while re.search() c转载 2016-06-29 21:13:45 · 493 阅读 · 0 评论 -
Increase the ordinal number at the beginning of each line
import ref_in = open("C:/log/2016_06_29/male1.1.tgf") f_out = open("C:/log/2016_06_29/male1.0.tgf", "w") lines = f_in.readlines()for line in lines: num = int(re.match(r"\d+", line)原创 2016-06-29 21:37:18 · 523 阅读 · 0 评论 -
generating selection dmat for igllib
mylist = [0] * 1800f_in = open("C:/log/2016_06_29/auto/face.txt") f_out = open("C:/log/2016_06_29/auto/face.o.txt", "w") lines = f_in.readlines() for line in lines: numbers =原创 2016-06-30 01:56:08 · 477 阅读 · 0 评论 -
batch downloading file in python
import urllib.request url_prefix = 'http://nptel.ac.in/courses/111103021/'for i in range(1,42): url = url_prefix + str(i) print("downloading page " + str(i)) urllib.request.urlretrieve原创 2016-03-16 10:51:36 · 561 阅读 · 0 评论 -
append a string to each line
infile_name = "C:/work_files/libigl/tutorial/shared/male1.mesh"outfile_name = "C:/work_files/libigl/tutorial/shared/male1.mesh.o"string_to_add = " 0"with open(infile_name, 'r') as f: file_line原创 2016-06-20 17:14:08 · 439 阅读 · 0 评论 -
exchange two numbers in each line
f_in = open("C:/work_files/libigl/tutorial/shared/exchange.txt") f_out = open("C:/work_files/libigl/tutorial/shared/exchange.o.txt", "w") for row in range(0,29620): line = f_in.readline()原创 2016-06-20 17:24:49 · 399 阅读 · 0 评论 -
find out the last match position
import rere.search("pattern(?!.*pattern)", "target_text")orimport rere.findall("pattern", "target_text")[-1]import reString = "This is an example sentence, it is for demonstration only"原创 2016-06-20 18:00:28 · 350 阅读 · 0 评论