00110001 00110100 00110000
Answer:
Explanation:
Using Python programming language
Explanation:
1. I defined a function add and passed in two parameters (a,b).
2. In the block of the function, I added the two numbers and printed the result.
3. I decided to use a function so that the program is re-usable and can accept various inputs.
Find the code below. (# are used for comments)
#Addition of numbers
def add(a,b):
print(a+b)
#Test Cases
add(2,4.5) #Result=6.5
add(10,290) #Result=300
add(2.567,4.58) #Result=7.147
Answer:
see explaination
Explanation:
import random
def number_guess(num):
n = random.randint(1, 100)
if num < n:
print(num, "is too low. Random number was " + str(n) + ".")
elif num > n:
print(num, "is too high. Random number was " + str(n) + ".")
else:
print(num, "is correct!")
if __name__ == '__main__':
# Use the seed 900 to get the same pseudo random numbers every time
random.seed(900)
# Convert the string tokens into integers
user_input = input()
tokens = user_input.split()
for token in tokens:
num = int(token)
number_guess(num)