Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13861

LAB: Enter two numbers and flip them

$
0
0

This is a lab I am absolutely stuck on.The purpose is to take 2 numbers entered by a user and flip the display of them.

The example input provided is 3, 8.A function is needed for this assignment and some parts were prefilled and can't be changed.

def swap_values(user_val1, user_val2):    val1 = user_val2    val2 = user_val1    return val1, val2if __name__ == '__main__':    input_val1 = input(int())    input_val2 = input(int())    print(*swap_values(input_val1, input_val2))

The output given is:

008 3

I cannot for the life of me figure out why I'm getting the 0's at the beginning.


Viewing all articles
Browse latest Browse all 13861

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>