Computer Science
Write a program whose three sample runs are shown below:
Sample Run 1:
Random number between 0 and 5 (A) : 2
Random number between 0 and 5 (B) :5.
A to the power B = 32
Sample Run 2:
Random number between 0 and 5 (A) : 4
Random number between 0 and 5 (B) :3.
A to the power B = 64
Sample Run 3:
Random number between 0 and 5 (A) : 1
Random number between 0 and 5 (B) :1.
A to the power B = 1
Python
Python Data Handling
21 Likes
Answer
import random
a = random.randint(0, 5)
b = random.randint(0, 5)
c = a ** b
print("Random number between 0 and 5 (A) :", a)
print("Random number between 0 and 5 (B) :", b)
print("A to the power B =", c)
Output
Random number between 0 and 5 (A) : 5
Random number between 0 and 5 (B) : 3
A to the power B = 125
Answered By
12 Likes
Related Questions
Write a program that asks a user for a number of years, and then prints out the number of days, hours, minutes, and seconds in that number of years.
How many years? 10
10.0 years is:
3650.0 days
87600.0 hours
5256000.0 minutes
315360000.0 secondsWrite a program that inputs an age and print age after 10 years as shown below:
What is your age? 17
In ten years, you will be 27 years old!Write a program that generates six random numbers in a sequence created with (start, stop, step). Then print the mean, median and mode of the generated numbers.
Write a program to generate 3 random integers between 100 and 999 which is divisible by 5.