To write a python program to circulate the n variables using function concept
PC Anaconda - Python 3.7
import def circulate
Prepare the lists from each linear equations and assign in np.array()
Get the value from the user for the number of rotation
Using the slicing concept rotate the list
add coding to input value
print the coding to get answer
#Program to circulate N values.
#Developed by:D.Paul Andrew
#RegisterNumber:21500230
def circulate():
l=[10,20,30,40,50,60]
n=int(input())
result=l[n:]+l[:n]
print("After circulating the values are:",result)
Thus the python program to circulate the n variables using function concept is obtained.