Welcome
Welcome to my documentation website. I will be creating a guide that can provide helpful hints and tips as well as an array of information about coding. This wll be used a reference with examples and sample outputs.
Python
# Python program to swap two variables
x = 5
y = 10
# To take inputs from the user
#x = input('Enter value of x: ')
#y = input('Enter value of y: ')
# 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))
Powershell
Networking Resources
For example.