Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Lỗi write() argument must be str, not None

01:55 28-07-2023 704 lượt xem 3 bình luận 00:31 29-07-2023
class HCN:
def __init__(self, chieu_dai, chieu_rong):
self.chieu_dai = chieu_dai
self.chieu_rong = chieu_rong

def dien_tich(self):
return self.chieu_dai * self.chieu_rong

def chu_vi(self):
return (self.chieu_dai + self.chieu_rong) * 2

def to_string(self):
print(f"chieu dai: {self.chieu_dai} \n"
f"chieu rong: {self.chieu_rong} \n"
f"chu vi: {self.chu_vi()} \n"
f"dien tich: {self.dien_tich()}")

def write_to_string(self):
open_file = open("hcn.txt", "r")
open_file.write(self.to_string())
open_file.close()

chieu_dai = int(input("cd: "))
chieu_rong = int(input("cr: "))
chu_nhat = HCN(chieu_dai, chieu_rong)
chu_nhat.to_string()
chu_nhat.write_to_string()

lỗi em gặp ạ : open_file.write(self.to_string())
TypeError: write() argument must be str, not None

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
FoxCode đã bình luận 22:15 01-08-2023

Có 2 lỗi lớn ở đây:

1. Hàm write_to_string() sửa mode thành "w+" vì "r" là chỉ đọc không thể viết.

2.Hàm to_string() thiếu return nên đoạn code "open_file.write(self.to_string())" ỏ hàm write_to_string() không có data để viết nên gây ra lỗi. Sửa bằng cách thêm return ở  cuối hàm to_string()

Code đã sửa:

 

def to_string(self):
        save = f"chieu dai: {self.chieu_dai} \n chieu rong: {self.chieu_rong} \n chu vi: {self.chu_vi()} \n dien tich: {self.dien_tich()}"
        print(save)
        return save

def write_to_string(self):
        open_file = open("hcn.txt", "w+")
        open_file.write(self.to_string())
        open_file.close()



 

 

chienthanhocdot đã bình luận 01:13 30-07-2023
theo mình thấy thì bạn đặt mode = 'r' trong khi ta chỉ được phép dùng hàm write với mode file là a a+ w w+

Câu hỏi mới nhất