From ee7920693c788e4689cb15766cfd10dbe9c4a442 Mon Sep 17 00:00:00 2001 From: Suliman Sagindykov <115887342+SulimanSagindykov@users.noreply.github.com> Date: Mon, 24 Jul 2023 12:42:10 +0500 Subject: [PATCH] Update README.md --- 014_Run_JavaScript_in_Python/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/014_Run_JavaScript_in_Python/README.md b/014_Run_JavaScript_in_Python/README.md index 784d454..e76c969 100644 --- a/014_Run_JavaScript_in_Python/README.md +++ b/014_Run_JavaScript_in_Python/README.md @@ -32,7 +32,7 @@ Open your [![Anaconda](https://img.shields.io/badge/Anaconda-342B029.svg?&style= - pip install js2py -**[`js2py`](https://github.com/PiotrDabkowski/Js2Py)** module is used to translator JavaScript to Python & acts as a JavaScript interpreter written in 100% pure Python. +**[`js2py`](https://github.com/PiotrDabkowski/Js2Py)** module is used to translate JavaScript to Python & acts as a JavaScript interpreter written in 100% pure Python. * It translates any valid JavaScript (ECMA Script 5.1) to Python. * Translation is fully automatic. @@ -42,7 +42,7 @@ Limitations: * strict mode is ignored. * with statement is not supported. -* Indirect call to eval will is treated as direct call to eval (hence always evals in local scope) +* Indirect call to eval will is treated as a direct call to eval (hence always evals in local scope) Once Installed now we can import it inside our python code. @@ -64,7 +64,7 @@ Go [**`here`**](https://github.com/milaan9/91_Python_Mini_Projects) if you aren' ![Download ZIP](https://github.com/milaan9/91_Python_Mini_Projects/blob/main/img/dnld_rep.png) -2. Extract the ZIP and open it. Unfortunately I don't have any more specific instructions because how exactly this is done depends on which operating system you run. +2. Extract the ZIP and open it. Unfortunately, I don't have any more specific instructions because how exactly this is done depends on which operating system you run. 3. Launch ipython notebook from the folder which contains the notebooks. Open each one of them @@ -72,7 +72,7 @@ Go [**`here`**](https://github.com/milaan9/91_Python_Mini_Projects) if you aren' This will clear all the outputs and now you can understand each statement and learn interactively. -If you have git and you know how to use it, you can also clone the repository instead of downloading a zip and extracting it. An advantage with doing it this way is that you don't need to download the whole tutorial again to get the latest version of it, all you need to do is to pull with git and run ipython notebook again. +If you have git and you know how to use it, you can also clone the repository instead of downloading a zip and extracting it. An advantage of doing it this way is that you don't need to download the whole tutorial again to get the latest version of it, all you need to do is to pull with git and run ipython notebook again. ---