2017-09-28 1 views

Répondre

2

Vous avez oublié une parenthèse pour correspondre avec la fonction int:

radius = int(input(' Can I please get the radius of your circle ')) #<-right here 
print(math.pi * radius**2) 
2

Vous êtes manque un crochet de fermeture dans la première ligne:

radius = int(input(' Can I please get the radius of your circle ')) 
#          ---------------------------^