Computer Science, asked by kuldeep4369, 4 months ago

write python code to create a series object temperature one that is Store temperature of seven days in it take any random 7 temperature​

Answers

Answered by adityaffmm
0

trying to answer bro or sister

Answered by mad210203
6

Program is given below.

Explanation:

import pandas as pd

#This is a series object which contains temperature of 7 days

temperature = pd.Series([43,45.5,50,39.9,47.8,36.6,51.3])

print("Temperature in 7 days is:")

print(temperature)

Refer the attached image for the output.

Attachments:
Similar questions