what will be the python code for the following
a("check")*3
print(a)
Answers
Answered by
13
Explanation:
Source Code
# Python program to find the factorial of a number provided by the user.
# change the value for a different result.
num = 7.
# To take input from the user.
#num = int(input("Enter a number: "))
factorial = 1.
# check if the number is negative, positive or zero.
Similar questions