mirror of
				https://github.com/ossu/computer-science.git
				synced 2025-10-30 13:18:55 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			143 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			143 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| print "hello python!"
 | |
| 
 | |
| print 4 + 4
 | |
| 
 | |
| import math
 | |
| print math.sqrt(16)
 | |
| print math.pow(3, 2)
 | |
| print math.cos(0)
 | |
| 
 | |
| # exercises
 | |
| print math.pow(23, 5)
 | |
| 
 | 
