Bar
Kindly have a look at our newest content here.
Admonition
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla et euismod nulla. Curabitur feugiat, tortor non consequat finibus, justo purus auctor massa, nec semper lorem quam in massa.
def swap_variables:
# To take input from the user
# x = input('Enter value of x: ')
# y = input('Enter value of y: ')
x = 5
y = 10
# create a temporary variable and swap the values
temp = x
x = y
y = temp
print('The value of x after swapping: {}'.format(x))
print('The value of y after swapping: {}'.format(y))
Second heading
Column 1 | Col 2 | Big row span |
---|---|---|
This cell spans two cols | One large cell | |
This cell spans two rows | r2_c2 | |
_ _ | r3_c2 | |
This could be anything here, right? | r4_c2 | _ _ |