Computer Science, asked by samridhishukla, 3 months ago

plz send coding of this form​

Attachments:

Answers

Answered by AnushGudimetla
0

Answer:

def print_html(string):

   import webbrowser

   file = open("website.html", 'a')

   file.write("<html>" + string + "<br> </html>")

   file.close()

   webbrowser.open("website.html")

print_html (print("Step 1: Your details")

Name = input("Name")

Email = input("E-mail")

Phone = int(input("Phone"))

print("Step 2 : Delivery address")

address = input("Address")

Post_code = input("Post code")

country = input("Country")

print("Step 3: Card details")

Card_number = int(input("Card Number"))

Security_code = int(input("Security Code"))

Name_on_card = input("Name on Card")

Similar questions