Question

QUESTION 5 Provide the python code to swap the values of x and y in one operation

0 0
Add a comment Improve this question Transcribed image text
Answer #1

In python programming, there is a simple construct to swap variables. The following code does the swapping without the use of any temporary variable.

x,y = y,x

Python Program

x = "hello"
y = "world"
print('The value of x before swapping: {}'.format(x))
print('The value of y before swapping: {}'.format(y))
x,y = y,x
print('The value of x after swapping: {}'.format(x))
print('The value of y after swapping: {}'.format(y))
Output

The value of x before swapping: hello
The value of y before swapping: world
The value of x after swapping: world
The value of y after swapping: hello

Add a comment
Know the answer?
Add Answer to:
QUESTION 5 Provide the python code to swap the values of x and y in one...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT