Computer Science, asked by janahassan981, 3 months ago

Write a Python command to assign the value 80.35 to a variable called 'point'. *

Answers

Answered by Anonymous
1

Explanation:

\blue{\bold{\underline{\underline{Answer:-}}}}

Answer:−

GiveN:

Given linear equation x - 5y = 2k

Solution of the equation (5,0)

To FinD:

Value of k.....?

Solution:

It is given that,

Solution of equation = (5,0)

So, putting values of x and y

➝ x - 5y = 2k

➝ 5 - 5 × 0 = 2k

➝ 5 - 0 = 2k

➝ 5 = 2k

Flipping it,

➝ 2k = 5

➝ k = 5/2

So, Value of k = 5/2(A)

Hence, solved !!

━━━━━━━━━━━━━━━

Answered by Anonymous
2

Assigning Values to Variables

Python variables do not need explicit declaration to reserve memory space. The declaration happens automatically when you assign a value to a variable. The equal sign (=) is used to assign values to variables.

Similar questions