fork download
  1. how_many_snakes = 1
  2. snake_string = """
  3. Welcome to Python3!
  4.  
  5. ____
  6. / . .\\
  7. \ ---<
  8. \ /
  9. __________/ /
  10. -=:___________/
  11.  
  12. <3, Juno
  13. """
  14.  
  15.  
  16. print(snake_string * how_many_snakes)
  17.  
Success #stdin #stdout 0.02s 9664KB
stdin
Standard input is empty
stdout
Welcome to Python3!

             ____
            / . .\
            \  ---<
             \  /
   __________/ /
-=:___________/

<3, Juno