mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	
		
			
	
	
		
			11 lines
		
	
	
	
		
			155 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
	
		
			155 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| 
								 | 
							
								from turtle import *
							 | 
						||
| 
								 | 
							
								color('red', 'yellow')
							 | 
						||
| 
								 | 
							
								begin_fill()
							 | 
						||
| 
								 | 
							
								while True:
							 | 
						||
| 
								 | 
							
								    forward(200)
							 | 
						||
| 
								 | 
							
								    left(170)
							 | 
						||
| 
								 | 
							
								    if abs(pos()) < 1:
							 | 
						||
| 
								 | 
							
								        break
							 | 
						||
| 
								 | 
							
								end_fill()
							 | 
						||
| 
								 | 
							
								done()
							 |