文件处理中的 int 函数和 str() 函数。我不知道我哪里错了

int function and str() function in file handling . i dont know where im going wrong

此任务所需的两个文件的路径已存储在变量 file_path_1 和 file_path_2

为file_path_1&file_path_2调用上一个任务中编写的函数readfile(),将它们的消息语句分别存储在变量message_1和message_2中。

打印 message_1 和 message_2 以查看它们包含的内容。

写一个函数 fuse_msg() :

将message_a和message_b作为参数

在 message_b 上实现 message_a 的整数(floor)除法(在应用 floor 除法之前不要忘记将消息设为 int)并将商存储在名为 quotient[=12 的变量中=]

Returns 字符串格式的商。

[Note you can convert any variable 'a' to string using str(a)] read_file() is already defined in another

message_1 = read_file(file_path_1)
message_2 = read_file(file_path_2)
print(message_1)
print(message_2)

def fuse_msg(message_a , message_b) :
    quotient =  int(message_b // message_a)
    return str(quotient)

secret_msg_1 = fuse_msg(message_1,message_2)

除法前需要将message_b和message_a转为int或float

message_1 = read_file(file_path_1)
message_2 = read_file(file_path_2)
print(message_1)
print(message_2)

def fuse_msg(message_a , message_b) :
    quotient =  int(message_b) // int(message_a)
    return str(quotient)

secret_msg_1 = fuse_msg(message_1,message_2)