import webbrowser message = """<html> <head></head> <body><p>Hello World!</p></body> </html>""" filepath = "hello.html" with open(filepath, 'w') as f: f.write(message) f.close() webbrowser.open_new_tab(filepath)
[Python] HTML 문서 만들고 웹브라우저로 열기
2018. 1. 21. 16:36