python string[:4] code example
Example 1: how to create a string of text in python
Example = ("Text Goes Here")
Example 2: str(n)
for x in range(0,len(no)):
rotation = no[x:len(no)] + no[0:x]
if not prime(int(rotation)) :
return False
return True