7 odpowiedzi
+ 1
Input in Python is automatically string datatype.
You have to transform it to an integer with 'int(n)'
+ 2
n=input("Enter the number")
fact = 1
for i in range(n):
fact = fact * i
return fact
+ 2
what is the error in the above code
+ 1
for i in range(n):
I advise you to learn Python basics here.
0
Написать программу поиска суммы последовательности
положительных чисел, вводимых с клавиатуры, предшествующих
первому введенному нулю.
Указание: должен многократно выполняться оператор ввода
0
?
0
Помогите