問題一覧
1
High-level, interpreted programming language
python
2
Python is Created by
guido van rossum
3
Python is release in
1991
4
Python is known for its
simplicity and readability
5
Widely used in AI, ML, web development, automation, and more
python
6
Python can connect to ____. It can also read and modify files.
database systems
7
Python can be used on a server to create _____.
web applications
8
Python can be used alongside software to create ____
workflows
9
Python can be used to handle ____ and perform complex mathematics.
big data
10
Python can be used to handle big data and perform _____.
complex mathematics
11
Python can be used for _____, or for production-ready software development
rapid prototyping
12
Python can be used for rapid prototyping, or for ____
production-ready software development
13
• Python works on different platforms
windows, mac, linux, raspberry, pi
14
Python has a simple syntax similar to the ____
english language
15
Python has syntax that allows developers to write programs with ____ than some other programming languages. (Interoperability with other languages/tools)
fewer lines
16
Python runs on an ____, meaning that code can be executed as soon as it is written. This means that prototyping can be very quick.
interpreter system
17
Python runs on an interpreter system, meaning that code can be executed as soon as it is ____. This means that prototyping can be very quick.
written
18
Python was designed for ____, and has some similarities to the English language with influence from mathematics
readability
19
Python uses ____ to complete a command, as opposed to other programming languages which often use semicolons or parentheses.
new lines
20
Python uses new lines to complete a command, as opposed to other programming languages which often use ____ or ___.
semicolons, parentheses
21
Python relies on ___, using whitespace, to define scope; such as the scope of loops, functions and classes.
identation
22
Python relies on indentation, using ___, to define scope; such as the scope of loops, functions and classes.
whitespace
23
Other programming languages often use ____ for this purpose
curly-brackets
24
Why python for Al and Ml
simplicity and readability, extensive libraries, active community support, platform independence, integration capabilities
25
Variables and data types
strings, boolean, integers, floats
26
Python uses ____ (not braces {}) to define code blocks
identation
27
___ is Case-sensitive language
python
28
No need for ____ to end statements
semicolon
29
Use # before the comment text
single-line comments
30
Use triple quotes (''' or """)
multi-line comments
31
Comments help explain code and improve readability
purpose
32
Basic data types:
numbers, strings, booleans
33
Collections:
lists, tuples, dictionaries, sets
34
x = "Hello World"
str
35
x = 20
int
36
x = 20.5
float
37
x = ["apple", "banana", "cherry"]
list
38
x = ("apple", "banana", "cherry")
tuple
39
x = {"name" : "John", "age" : 36}
dict
40
x = {"apple", "banana", "cherry"}
set
41
x = True
bool
42
Conditional Statements:
if, elif, else
43
Loops:
for loop, while loop
44
Use the print() function to display text or variable values
output
45
Use input() function to capture user input
input