1.
name = input("Enter your name: ") 
num1 = int(input("Hello "+name+ ", enter an integer: ")) 
num2 = int(input(name+", enter another integer: ")) 
try: 
 if num1 % num2 == 0: 
 print("The first number is divisible by the second number") 
 else: 
 print("The first number is not divisible by the second number") 
except ZeroDivisionError: 
 print("The first number is not divisible by the second number") 
try: 
 if num2 % num1 == 0: 
 print("The second number is divisible by the first number") 
 else: 
 print("The second number is not divisible by the first number") 
except ZeroDivisionError: 
 print("The second number is not divisible by the first number")
2.
import random, math 
 
num1 = float(input("Enter a small decimal number: ")) 
num2 = float(input("Enter a large decimal number: ")) 
r = round(random.uniform(num1, num2), 2) 
print("The volume of a sphere with radius " + str(r) + " is " + str(round(((4 / 3) * math.pi * (r ** 3)), 2)))
I hope this helps!