Python Forum
Still confused about how passing arguments works
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Still confused about how passing arguments works
#4
As mention bye @mlieqo getLocation() shall not have argument in,they get create in function.
PEP-8 and f-string.
def location():
    x = input("Specify horizontal position: ")
    y = input("Specify vertical position: ")
    z = input("Specify altitude: ")
    return x, y, z

def quick_test():
    latitude,longitude,altitude = location()
    print(f'You are located at {latitude} degrees latitude '
          f'{longitude} degrees longitude and {altitude} feet above sea level.')

quick_test() 
Output:
You are located at 100 degrees latitude 200 degrees longitude and 300 feet above sea level.
Reply


Messages In This Thread
RE: Still confused about how passing arguments works - by snippsat - Apr-25-2018, 11:01 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Problems passing arguments containing spaces to bash script and then on to python kaustin 6 401 Apr-03-2024, 08:26 PM
Last Post: deanhystad
  Passing writable arguments to functions. Assembler 11 963 Jan-15-2024, 11:32 PM
Last Post: sgrey
  String int confused janeik 7 1,083 Aug-02-2023, 01:26 AM
Last Post: deanhystad
  I am confused with the key and value thing james1019 3 968 Feb-22-2023, 10:43 PM
Last Post: deanhystad
  Passing string functions as arguments Clunk_Head 3 1,255 Jun-15-2022, 06:00 AM
Last Post: Gribouillis
  Pandas confused DPaul 6 2,567 Sep-19-2021, 06:45 AM
Last Post: DPaul
  is and '==' i'm confused hshivaraj 6 2,717 Sep-15-2021, 09:45 AM
Last Post: snippsat
  Confused with 'flags' tester_V 10 4,921 Apr-12-2021, 03:03 AM
Last Post: tester_V
  Simple Tic Tac Toe but I'm confused Izith 1 2,196 Sep-26-2020, 04:42 PM
Last Post: Larz60+
  I am really confused with this error. Runar 3 3,024 Sep-14-2020, 09:27 AM
Last Post: buran

Forum Jump:

User Panel Messages

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