Bản quyền thuộc về TITV.vn,
vui lòng không đăng tải lại nội dung từ trang này.
Video giải thích chi tiết
Cú pháp:
print(object(s), sep=separator, end=end, file=file, flush=flush)
object(s): đối tượng, dữ liệu được xuất
sep: ngăn cách
end: kết thúc
file: tên tập tin
flush: đẩy dữ liệu
Code chi tiết
Ví dụ:
print("Hello, World!")
print("Hello, World!");print("Hello, World!")
print('Xin','Chào','TITV')
print('Xin','Chào','TITV', sep='\n')
print('Xin','Chào',end=' ')
print('TITV')
print('name={0},surname={1}'.format('titv', 'vn'))
Không có nhận xét nào:
Đăng nhận xét