Dev/Python

[Python] HTML 문서 만들고 웹브라우저로 열기

공대나왔음 2018. 1. 21. 16:36
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)