Improve tutorial documentation (#1408)

This commit is contained in:
Cody Martin
2022-12-02 13:55:40 -07:00
committed by GitHub
parent 0933228dd5
commit 3870dc73b6
16 changed files with 83 additions and 75 deletions

View File

@ -255,7 +255,7 @@ There are several ways to include files in Python.
```python
# One way is to use the execfile command
execfile("Modified_data/data_record.py")
exec(open("Modified_data/data_record.py").read())
# Another way is to make the included file a module and import it.
# Import search paths may be added using the sys.path.append command.