KTKaran Thakkarinkaransss.hashnode.dev·Aug 30, 2023 · 2 min readHow 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...00
KTKaran Thakkarinkaransss.hashnode.dev·Aug 30, 2023 · 1 min readFiles in Pythonf = open("test.txt",'w') here we open test.txt in write mode. pwd - Shows present Working directory: '/home/jovyan/work' ls - shows the list of files in directory README.md sample-code.ipynb test.txt Untitled.ipynb w - truncate a - append00
KTKaran Thakkarinkaransss.hashnode.dev·May 30, 2023 · 5 min readWebScrapping Project Part - 1Today we will learn Webscrapping, how we can convert it into a Project. What are the benefits, and objective of this project. Firstly, if u are working on any data project, then u get data from the client side.Sometimes, u need to get the derived dat...00
KTKaran Thakkarinkaransss.hashnode.dev·May 28, 2023 · 2 min readDataScience - OOPs Part 2We now want to pass data in class, so we will have to design class in such manner. we define inbuilt function '__init__()' which is constructor. class karanskills1 : def __init__( self , phone_number , email_id , student_id ) : self.phone_number = ph...00
KTKaran Thakkarinkaransss.hashnode.dev·Apr 14, 2023 · 3 min readDataScience - OOPS Part-1'OOPS' stands for Object Oriented Programming System Firstly, comes classes. Classes are blueprint or skeleton or overall definition of OOPs things. Eg. If I say there is a car, and ask you to sit inside. Then you will ask which one? Because there ar...00