Ответ:
1 и 4
Объяснение:
1)
>>> input ("Задай число") = x
File "<stdin>", line 1
input ("Задай число") = x
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
4)
>>> x= inpyt ("Задай число")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'inpyt' is not defined. Did you mean: 'input'?
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
1 и 4
Объяснение:
1)
>>> input ("Задай число") = x
File "<stdin>", line 1
input ("Задай число") = x
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
4)
>>> x= inpyt ("Задай число")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'inpyt' is not defined. Did you mean: 'input'?