Opérations arithmétiques élémentaires

Script

import math                                                                     
import numpy as np                                                              
                                                                                
###################                                                             
# Opérations arithmétiques et affectations                                      
5+5                                                                             
15*2                                                                            
x=2                                                                             
15+x*3                                                                          
math.sqrt(15+x*3)