Hỏi đáp

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

Nhập từ file input {tên}, {tuổi hiện tại} và xuất ra file output theo mẫu

19:47 03-12-2021 452 lượt xem 1 bình luận

with open("bai1.10", 'a+') as fileInp:

 

  ten = fileInp.readline().rstrip('\n')

  tuoihientai = int(fileInp.readline().rstrip('\n'))

 

with open('output.out','w') as fileOut:

 fileOut.write('vao 20 nam nua tuoi {}se la {}'.format(ten, tuoihientai + 20))

dòng tuoihientai bị

Exception has occurred: ValueError

  •  

invalid literal for int() with base 10: ''

là lỗi gì vậy ạ em cảm ơn ạ

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
K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 15:39 04-12-2021
tuoihientai = int(fileInp.readline().rstrip('\n'))

đoạn này data đưa vào của bạn không phải int nên lỗi

 

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