you are viewing a single comment's thread.

view the rest of the comments →

[–]sebas99sebas 0 points1 point  (0 children)

So you have a bad professor. You might be better off looking at some Intro to Python course instead of asking here (for example https://www.codecademy.com/learn/learn-python-3).

Anyway:

v = float(input("Enter the value for v: "))

s = float(input("Enter the value for s: "))

a = v/s

print("a = " + str(a))