Python3 Engineer Certification Basic Exam As a countermeasure, this is a personal memo that summarizes the contents of the Python tutorial (book) in easy-to-memorize bullet points.
Python Tutorial: https://docs.python.org/ja/3/tutorial/ Chapter 1: https://docs.python.org/ja/3/tutorial/appetite.html Books: https://www.oreilly.co.jp/books/9784873117539/
--Python3 Engineer Certification Basic Exam Score --1/40 questions (2.5%) ☆ ★★★★ (importance: small) --Theme --Features of Python
Python has the following features.
-** Interpreter language , no compilation or linking required. --It is also possible to use the interpreter interactively. - Available on major operating systems such as Windows, Mac OS X, UNIX **. ――It is a real programming language that is simple but has the following functions. --General data types --Error check mechanism --High-level data types such as flexible arrays, sets, dictionaries, etc. ――The program can be written shorter than C or Java for the following reasons. --High-level data types allow complex operations to be represented in a single sentence. --Use ** indent ** for sentence grouping. --No need to declare variables or arguments. --The written program can be reused as a separate ** module . --The ** standard module ** that provides the following functions is attached. --File I / O --System call --Socket --GUI toolkit interface - Extensible language **, built-in functions and modules can be added to the interpreter. --The name comes from the BBC TV show ** Monty Python's Flying Circus **.
Next article: The contents of the Python tutorial (Chapter 2) are itemized
Recommended Posts