Skip to content

Commit dd2c42e

Browse files
committed
System
1 parent 7ca352a commit dd2c42e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -815,14 +815,14 @@ LogicOp = Enum('LogicOp', {'AND': partial(lambda l, r: l and r),
815815

816816
System
817817
------
818-
### Arguments
818+
### Command Line Arguments
819819
```python
820820
import sys
821821
script_name = sys.argv[0]
822822
arguments = sys.argv[1:]
823823
```
824824

825-
### Input
825+
### Input Function
826826
**Reads a line from user input or pipe if present. The trailing newline gets stripped.**
827827

828828
```python
@@ -838,7 +838,7 @@ while True:
838838
break
839839
```
840840

841-
### Open
841+
### Open Function
842842
**Opens file and returns a corresponding file object.**
843843

844844
```python
@@ -883,7 +883,7 @@ from os import path, listdir
883883
['1.gif', 'card.gif']
884884
```
885885

886-
### Execute Command
886+
### Command Execution
887887
```python
888888
import os
889889
<str> = os.popen(<command>).read()

0 commit comments

Comments
 (0)