Go to advanced search

by johnlenon
Sat Jun 15, 2019 2:25 pm
Forum: Debian
Topic: How to install yarn on Debian ?
Replies: 1
Views: 6336

How to install yarn on Debian ?

I have installed yarn on centOS 7 using this tutorial. Can anyone tell me how to install yarn on Debian.
by johnlenon
Sat Jun 15, 2019 2:20 pm
Forum: Python
Topic: What are the important numpy functions in Python ?
Replies: 1
Views: 305

What are the important numpy functions in Python ?

i am beginner to Python. I am now learning numpy libraries linspace function. Anyone here know which functions of numpy library are most important?
by johnlenon
Sat Jun 15, 2019 2:16 pm
Forum: Python
Topic: How to print without newline
Replies: 7
Views: 878

Re: How to print without newline

Following is the program referred from crazygeeks for printing without newline:

Code: Select all

# 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]),  
by johnlenon
Mon May 06, 2019 6:40 pm
Forum: General discussion
Topic: "scp" copy files over ssh connection
Replies: 25
Views: 30106

Re: "scp" copy files over ssh connection

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 ...

Go to advanced search