92.2k views
3 votes
How would I collect a number from the user to use for the radius of a circle?

int(input("What is the radius?: "))

radius = int("What is the radius?: ")

radius = int(input("What is the radius?: "))

radius = int input("What is the radius?: ")

User Alessandra
by
3.0k points

1 Answer

7 votes

Answer:

C is the correct answer to your question

User TCCV
by
3.4k points