Skip to content

Commit 8f00c84

Browse files
Create string_rotation.py
1 parent 98b603c commit 8f00c84

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

string_rotation.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
def rotate(n):
2+
a = list(n)
3+
if len(a) == 0:
4+
return print ([])
5+
l = []
6+
for i in range(1,len(a)+1):
7+
a = [a[(i+1)%(len(a))] for i in range(0,len(a))]
8+
l += ["".join(a)]
9+
print(l)
10+
11+
string = str(input())
12+
print("Your input is :" ,string)
13+
print("The rotation is :")
14+
rotate(string)
15+
16+
17+
# Input : Python
18+
# output :
19+
# The rotation is :
20+
# ['ythonp', 'thonpy', 'honpyt', 'onpyth', 'npytho', 'python']

0 commit comments

Comments
 (0)