Μάθημα : Προγραμματισμός Βπ Θεωρία

Κωδικός : 0540545254

0540545254  -  ΓΕΩΡΓΙΟΣ ΜΠΑΝΤΟΥΒΕΡΗΣ

Ενότητες - HTML Generator

HTML Generator

# ΕΙΣΟΔΟΣ ΔΕΔΟΜΕΝΩΝ
title=raw_input("Dvse titlo ")
typos_head = raw_input("Dwse typo epikefalidas H1/H2/H3/H4..H6 : ")
while not(typos_head == "H1" or typos_head == "H2" or typos_head == "H3" or typos_head == "H4" or typos_head == "H5" or typos_head == "H6"): # ΟΣΟ ΔΙΝΟΝΤΑΙ ΛΑΘΟΣ ΤΙΜΕΣ
    typos_head = raw_input("Lathos Dwse ksana\nDwse typo epikefalidas H1/H2/H3/H4..H6 : ")
    periexomeno_head=raw_input("Dwse periexomeno epikefalidas : ")

table_rows=input("Πινακας : Πόσες γραμμές : ")
if table_rows > 0:
    table_cols =input("Πινακας : Πόσες στήλες : ")

#ΔΗΜΙΟΥΡΓΙΑ  HTML ΚΩΔΙΚΑ
print "<html>"
print "<head>"
print "<title>"+title+"</title>"
print "</head>"
print "<body>"
print "<CENTER><"+typos_head+">"+periexomeno_head+"</"+typos_head+"></CENTER>"
if table_rows > 0:
    print "<table border=1>"
    for i in range(table_rows):
        print "<tr>",
        for j in range(table_cols):
            print "<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>",
        print "</tr>"
     print "</table>"

print "</body>"
print "</html>"