str) -> None: text: str = "<html>\n" text += "<head>\n" text += "<title>" + title + "</title>\n" text += "</head>\n" text += "<head>\n" text += "<body><p>" + description + "</p></body>\n" text += "</html>\n" with open("output.html", mode="w") as f: f.write(text) shimakaze-soft 19
-> None: text: str = "<html>\n" text += "<head>\n" text += "<title>" + title + "</title>\n" text += "</head>\n" text += "<head>\n" text += "<body><p>" + description + "</p></body>\n" text += "</html>\n" with open("output.html", mode="w") as f: f.write(text) shimakaze-soft 37