Sophie’s Reviews > Python for Informatics: Exploring Information: Exploring Information > Status Update
Sophie
is on page 11 of 246
Differences between script and program.
Script is part of the instructions you write with text editor and have a file name ends with .py.
Program is similar to script but it is used to solve a problem. So a program might need some script to form.
In a nutshell, program is like a thesis, and script is like a chapter from it.
— Nov 08, 2021 04:57PM
Script is part of the instructions you write with text editor and have a file name ends with .py.
Program is similar to script but it is used to solve a problem. So a program might need some script to form.
In a nutshell, program is like a thesis, and script is like a chapter from it.
Like flag
Sophie’s Previous Updates
Sophie
is on page 8 of 246
CPU execution reads machine language which is portable between different machines. However, Programming languages need something to be translated into machine language. The translators have two general categories:
1) Interpreters: reads the source code of the program written by the programmer and interprets it on the fly.
2) Compiler: needs to be handed the entire program in a file for later execution.
— Nov 08, 2021 04:51PM
1) Interpreters: reads the source code of the program written by the programmer and interprets it on the fly.
2) Compiler: needs to be handed the entire program in a file for later execution.
Sophie
is on page 4 of 246
Two skills to be a programmer:
1. The programming language.
2. Tell a Story.
— Nov 08, 2021 04:39PM
1. The programming language.
2. Tell a Story.

