Python Forum
Function will not return variable that I think is defined
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Function will not return variable that I think is defined
#1
I am teaching myself python and have this function in a programme:

x1 = 1
x2 = 2
y1 = 4
y2 = 6

def distance(x1, y1, x2, y2):
    dx = x2 - x1
    dy = y2 - y1
    return 0.0
print(dx, dy)
the output is:
Output:
Python 3.8.4 (tags/v3.8.4:dfa645a, Jul 13 2020, 16:46:45) [MSC v.1924 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license()" for more information. >>> = RESTART: C:\Users\John\Documents\John''s files\Work\Coding\Think Like a Computer Scientist\Functions\distance_calculation.py Traceback (most recent call last): File "C:\Users\John\Documents\John''s files\Work\Coding\Think Like a Computer Scientist\Functions\distance_calculation.py", line 10, in <module> print(dx, dy) NameError: name 'dx' is not defined >>>
I think I have defined dx at dx = x2 - x1 but clearly the Interpreter thinks not! Any help will be gratefully received
Reply


Messages In This Thread
Function will not return variable that I think is defined - by Oldman45 - Aug-11-2020, 09:05 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Variable not defined even though it is CoderMerv 3 293 Mar-28-2024, 02:13 PM
Last Post: Larz60+
  Variable for the value element in the index function?? Learner1 8 665 Jan-20-2024, 09:20 PM
Last Post: Learner1
  Variable is not defined error when trying to use my custom function code fnafgamer239 4 594 Nov-23-2023, 02:53 PM
Last Post: rob101
  nested function return MHGhonaim 2 619 Oct-02-2023, 09:21 AM
Last Post: deanhystad
  Printing the variable from defined function jws 7 1,323 Sep-03-2023, 03:22 PM
Last Post: deanhystad
  Function parameter not writing to variable Karp 5 949 Aug-07-2023, 05:58 PM
Last Post: Karp
  return next item each time a function is executed User3000 19 2,302 Aug-06-2023, 02:29 PM
Last Post: deanhystad
  function return boolean based on GPIO pin reading caslor 2 1,192 Feb-04-2023, 12:30 PM
Last Post: caslor
  Getting NameError for a function that is defined JonWayn 2 1,114 Dec-11-2022, 01:53 PM
Last Post: JonWayn
Question Help with function - encryption - messages - NameError: name 'message' is not defined MrKnd94 4 2,907 Nov-11-2022, 09:03 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020