How To use GitHub?We don't know how to Push or Pull to/from a github repository.So lets learn today. \======>PULL Code from Github: Suppose you have a public repository. In the top-right corner there is option "<>Code" Then there are 3 options:-HTTPS-SSH-Github CLI Go...Aug 30, 2023·2 min read
DS - Map, Reduce Filter FunctionsSuppose we take a list: l = [2,3,4,5,6] Suppose we create a function to find square of list and call it and get output: def test(l): l1 = [] for i in l: l1.append(i**2) return l1 test(l) o/p: [4, 9, 16, 25, 36] Now we want to map every element of lis...Mar 30, 2023·4 min read
DataScience - Python Lambda Functionsn = 3 p = 2 def test(n,p): return n**p test(3,2)Here, we create test function. Lambda Function: a = lambda n , p: n**p a(3,2) we use lambda keyword and take 2 inputs n,p; then after colon we put the output we want, then we store function inside varia...Mar 28, 2023·1 min read
DataScience - Generator FunctionsIf we write range(10), it will return an object not the data.For getting the data we need to add for loop as:for i in range(10): print(i) We can also take elements into list but it will do a lot of memory consumption if there are millions of elements...Mar 25, 2023·3 min read
1st hello world<>Content </> - Normal Tags (opening & Closing) : Need to open and close < /> - Self closing tagsFeb 3, 2023·1 min read