# Python 3 code for printing without newline
print("Apple"),
print("Pineapple")
# array
a = [1, 2, 3, 4, 5, 6, 7]
# printing a element in same
# line
for i in range(7):
print(a[i]),
I have read below tutorial for scp command SCP command is used to copy files between to systems in a secure way. SCP stands for Secure Copy which copies files or directories securely. By using SCP command you can copy or transfer files from the remote system to the remote system or remote system to ...