Python: Difference between revisions

From David's Wiki
No edit summary
Line 42: Line 42:
<syntaxhighlight lang="python">
<syntaxhighlight lang="python">
import subprocess
import subprocess
subprocess.run(["ls", "-l"])
subprocess.run(["ls", "-l"], cwd="/")
</syntaxhighlight>
</syntaxhighlight>


==Libraries==
==Libraries==
===Numpy===
===Numpy===

Revision as of 13:07, 7 October 2019


Installation

Use Anaconda.

Basic Usage

Lambda Function

lambda x: x * 2

Filesystem Read and Write

List all files in a folder

Reference

gazeDir = "Gaze_txt_files"
# List of folders in root folder
gazeFolders = [path.join(gazeDir, x) for x in os.listdir(gazeDir)]
# List of files 2 folders down
gazeFiles = [path.join(x, y) for x in gazeFolders for y in os.listdir(x)]

Read entire text file into a list

[1]

with open('C:/path/numbers.txt') as f:
    lines = f.read().splitlines()

Regular Expressions (Regex)

Reference

import re
myReg = re.compile(r'height:(\d+)cm')
myMatch = re.match(myReg, "height:33cm");
print(myMatch[1])
# 33

Spawning Processes

Use subprocess to spawn other programs.

import subprocess
subprocess.run(["ls", "-l"], cwd="/")

Libraries

Numpy