What are script mode in python
Answers
Answered by
3
Answer:
Script Mode. If you need to write a long piece of Python code or your Python script spans multiple files, interactive mode is not recommended. Script mode is the way to go in such cases. In script mode, You write your code in a text file then save it with a . py extension which stands for "Python
hjj
hj
follow me
Answered by
2
Answer:
Python has two basic modes: script and interactive. The normal mode is the modewhere the scripted and finished . py files are run in the Python interpreter. Interactive mode is a command line shell which gives immediate feedback for each statement, while running previously fed statements in active memory.
Similar questions