新城的车牌识别系统需要反转车牌号字符串。以下代码的输出是?
plate = "SR-2025" reversed_plate = plate[::-1] print(reversed_plate)
"5202-RS"
"SR-2025"
"5202-SR"
"2025-RS"