create EVC-Plus
import random def create_evc_plus(name): # randomly create a number between 1 and 1000 # and assign that number to a variable called evc_plus_number evc_plus_number = random.randint(1,1000) # return the concatenated string "EVCPlus" and the number return "EVCPlus" + str(evc_plus_number) create_evc_plus("EVC")