Elena runs a local plant nursery. She wants a program that will generate unique identification batch codes for the plants she propagates.
The program must:
You must use the following code skeleton to complete the program:
import random
# 1. Input the plant name
plant_name =
# 2. Generate the batch code
# 3. Output the plant name followed by the batch code
Write the completed program.