02 - one line of 10 stars and one line of 10 planets.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet


for i in range(10):
        print("*", end="")

print()
for i in range(10):
        print(i, end="")
    
    
    
    
    
                    

Try it yourself