3 Answers
+ 1
Change to
r,pi=12,3.14159
s=pi*r**2
print(s)
print(type(r), type(pi),type(s))
https://code.sololearn.com/cEyOSBu6qQ5I/?ref=app
In Python3 print need () as in print('Hello')
0
i figured out the 3rd line but whats up with the 4th?
0
oh thanks