Computer Science, asked by akash280604, 5 months ago

What is the steps to work in script mode of python.​

Answers

Answered by Anonymous
6

Explanation:

script mode

  1. If you are in the standard Python shell,
  2. you can click "File" then.
  3. choose "New" or simply hit "Ctrl + N" on your keyboard to open a blank script in which you can write your code.
  4. You can then press "Ctrl + S" to save it.
  5. After writing your code, you can run it by clicking "Run" then "Run Module" or simply press F5.
Answered by sarikasankar20
0

Answer:

A Python script is a collection of commands in a file designed to be executed like a program. The file can of course contain functions and import various modules, but the idea is that it will be run or executed from the command line or from within a Python interactive shell to perform a specific task

Explanation:

Similar questions