Learn practical skills, build real-world projects, and advance your career
import math
import matplotlib.pyplot as plt
import numpy as np
import jovian
def heart(t):
    a = math.sin(t)
    return a

def dil(t):
    b = math.cos(t)  
    return b