1. Phython Comments symbol - ANS☑☑---# this is a comment
2. print() - ANS☑☑---function displays variables or expression values.
3. print('Hello there')
4. end=' ' inside of print() - ANS☑☑---keep the output of a subsequent print
statement on the same line separated by a single space
5. input() - ANS☑☑---will read text entered by the user
6. Python interpreter - ANS☑☑---is a computer program that executes code
written in the Python programming language
7. interactive interpreter - ANS☑☑---is a program that allows the user to
execute one line of code at a time.
8. Is Python case sensitive? - ANS☑☑---Yes. Python is a case sensitive
language.
, 9. int() function - ANS☑☑---can be used to convert that string to the integer
123
10.3 defining Properties of Python objects - ANS☑☑---Value
11.Type
12.Identity
13.Mutability - ANS☑☑---indicates whether the object's value is allowed to
be changed.
14.id() - ANS☑☑---gives the value of an object's identity.
15.floating-point number
16.and
17.floating-point literal - ANS☑☑---real number, like 98.6
18.and
19.fractional part even if that fraction is 0, as in 1.0
20.scientific notation - ANS☑☑---1.0e-3.
21.The "e" stands for exponent
22.Overflow occurs when.... - ANS☑☑---a value is too large to be stored in
the memory
23.** is - ANS☑☑---exponent operator is **, as in x ** y
24.module - ANS☑☑---a file containing Python code
2. print() - ANS☑☑---function displays variables or expression values.
3. print('Hello there')
4. end=' ' inside of print() - ANS☑☑---keep the output of a subsequent print
statement on the same line separated by a single space
5. input() - ANS☑☑---will read text entered by the user
6. Python interpreter - ANS☑☑---is a computer program that executes code
written in the Python programming language
7. interactive interpreter - ANS☑☑---is a program that allows the user to
execute one line of code at a time.
8. Is Python case sensitive? - ANS☑☑---Yes. Python is a case sensitive
language.
, 9. int() function - ANS☑☑---can be used to convert that string to the integer
123
10.3 defining Properties of Python objects - ANS☑☑---Value
11.Type
12.Identity
13.Mutability - ANS☑☑---indicates whether the object's value is allowed to
be changed.
14.id() - ANS☑☑---gives the value of an object's identity.
15.floating-point number
16.and
17.floating-point literal - ANS☑☑---real number, like 98.6
18.and
19.fractional part even if that fraction is 0, as in 1.0
20.scientific notation - ANS☑☑---1.0e-3.
21.The "e" stands for exponent
22.Overflow occurs when.... - ANS☑☑---a value is too large to be stored in
the memory
23.** is - ANS☑☑---exponent operator is **, as in x ** y
24.module - ANS☑☑---a file containing Python code