In
IDLE - Python 3, do the following:
1.
Create File --> New
2. Enter the code below in the new file (you may omit the comments,
I included them for explanation
#Python Code
Begin
x = int(input("Enter a
number: "))
y = int(input("Enter
another number: "))
print ("Values
before", "x:", x, "y:", y)
#add code to swap
variables here
#you may not use
Python libraries or built in swap functions
#you must use only the
operators you have learned...