100% found this document useful (1 vote)
5K views

5.22 LAB Swapping Variables

This document provides code for a program that takes two integer inputs, swaps their values using a function, and prints the swapped outputs. The swap_values() function defines and returns the values in swapped order by using a temporary variable to store the first value, assigning the second value to the first, and assigning the temporary value to the second. The main portion of the code takes integer inputs, calls the swap_values() function, and prints the swapped values.

Uploaded by

CHRIS D
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
5K views

5.22 LAB Swapping Variables

This document provides code for a program that takes two integer inputs, swaps their values using a function, and prints the swapped outputs. The swap_values() function defines and returns the values in swapped order by using a temporary variable to store the first value, assigning the second value to the first, and assigning the temporary value to the second. The main portion of the code takes integer inputs, calls the swap_values() function, and prints the swapped values.

Uploaded by

CHRIS D
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

5.

22 LAB: Swapping variables


Write a program whose input is two integers and whose output is the two integers
swapped.
Ex: If the input is:
3
8
the output is:
8 3
Your program must define and call the following function. swap_values() returns the two
values in swapped order.
def swap_values(user_val1, user_val2)

def swap_values(user_val1, user_val2):

temp = user_val1

user_val1 = user_val2

user_val2 = temp

return user_val1, user_val2

if __name__ == '__main__':

user_val1 = int(input())

user_val2 = int(input())

#print(swap_values(user_val1, user_val2))

print(user_val2, user_val1)

You might also like