slip.3

1.
<!DOCTYPE html>
<html>
<head>
<title>Company Info</title>
<style>
h1 {
background-color: green;
color: red;
font-family: Comic Sans MS, cursive, sans-serif;
text-align: center;
padding: 10px;
}
p {
color: blue;
font-size: 16px;
margin: 20px;
}
</style>
</head>
<body>
<h1>My Company Name</h1>
<p>We are a leading company in innovative solutions, dedicated to providing the best services to our clients.</p>
</body>
</html>





2


import pandas as pd
import matplotlib.pyplot as plt



data = pd.read_csv("Iris.csv")
new_data = data[["SepalLengthCm", "SepalWidthCm", "PetalLengthCm", "PetalWidthCm"]]
print(new_data.head())
new_data.boxplot()
plt.title("Box Plot")
plt.show()




data = pd.read_csv('weight-height.csv')
df = pd.DataFrame(data)
print('\n Basic Statistical Details of Given Dataset: \n\n', df.describe())



Comments

Popular posts from this blog

Slip No.1

slip.4