Answers for "table"

9

table

<table>
  <tr> <!-- This is the first row -->
    <th>This is the heading</th>
    <th>Next heading to the right</th>
  </tr>
  <tr> <!-- This is the second row -->
    <td>This is where the table data goes</td>
    <td>This is the second columns data</td>
  </tr>
</table>
Posted by: Guest on April-24-2020
1

TABLE

<table><caption>Phone numbers</caption>
<thead>
	<tr>
		<th>Name</th>
		<th colspan="2">Phone</th>
	</tr>
</thead>
<tbody>
	<tr>
		<td>John</td>
		<td>577854</td>
		<td>577855</td>
	</tr>
	<tr>
		<td>Jack</td>
		<td>577856</td>
		<td>577857</td>
	</tr>
</tbody>
<tfoot>
	<tr>
		<td> </td>
		<td>Personal</td>
		<td>Office</td>
	</tr>
</tfoot>
</table>
Posted by: Guest on May-22-2021
0

table

"""it's to get a table upto any number without linespacing trouble"""
a =int(input("upto:"))
n=a+1
for i in range(1,n):
  for j in range(1,11):
    print((len(str(a*a))-len(str(i*j))+1)*" ",end='')
    print(i*j,end='')
  print()
Posted by: Guest on March-10-2021
0

table

table
Posted by: Guest on April-22-2021
0

table

<!DOCTYPE html>
<html>
<title>HTML Tutorial</title>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
Posted by: Guest on October-19-2021
-2

table

<table>
  <tr>
    <th>Company</th>
    <th>Contact</th>
    <th>Country</th>
  </tr>
  <tr>
    <td>Alfreds Futterkiste</td>
    <td>Maria Anders</td>
    <td>Germany</td>
  </tr>
  <tr>
    <td>Centro comercial Moctezuma</td>
    <td>Francisco Chang</td>
    <td>Mexico</td>
  </tr>
</table>
Posted by: Guest on June-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language