To write a python program to circulate the n variables using function concept
PC Anaconda - Python 3.7
import numpy
get the input
Get the value from the user for the number of rotation
Using the slicing concept rotate the list
print the reult
END THE PROGRAM
#Program to circulate N values.
#Developed by:SACHIN.C
#RegisterNumber:22001187
def circulate():
a=eval(input())
n=int(input())
a=a[n:]+a[:n]
print("After circulating the values are:",a)
Thus,the circulation of the values of the N variables are solved using python programming.