I'm trying to use a single for loop to cycle over a string to print it out like this:
s u p e r n a t u r a l
u p e r n a t u r a l s
p e r n a t u r a l s u
Here is my code so far:
def main():
first_Name = "s u p e r n a t u r a l"
print(first_Name)
for i in range(len(first_Name)):
print(first_Name[i])
main()