Answer:
Glue Language
Explanation:
I'm not 100% sure, but here is the definition.
Glue language- A programming language that can be used to provide interoperability between systems not originally intended to work together
Rapid prototyping! I am sure that is correct
I've added my own code in a picture below. I didnt really notice any error, which would cause problems in your code. The main issues I had with your code is purely readability. You should start using the format function along with the curly brackets to concatenate variables into strings. You should also start doing even += 1 instead of even = even + 1. I also tweaked your range function. Simply putting n makes it much easier to read and understand.
Answer:
// Python code
username=input("Type your name: ")
desc=input("Describe yourself: ")
f=open('profile.html','w')
html="<html>\n"+\
"<head>\n"+\
"</head>\n"+\
"<body>\n"+\
"<center>\n"+\
"<h1>"+username+"</h1>\n"+\
"</center>\n"+\
"<hr/>\n"+\
desc+"\n"\
"<hr/>\n"+\
"</body>\n"+\
"</html>\n"
f.write(html)
f.close()
Code for profile.html file
<html>
<head>
</head>
<body>
<center>
<h1>Jon Doe</h1>
</center>
<hr/>
A software engineer working at a startup.
<hr/>
</body>
</html>
Explanation:
- Get the name and description of user as an input.
- Write HTML content by opening the file.
- Create and develop the essential HTML syntax.
- Write the information into the HTML file and finally close the file.
- Write the HTML code in the profile.html file.