Creating, Reading and Writing $ pip install pandas $ python3 >>> import pandas as pd >>> pd.DataFrame({'BOB':['Ist column of BOB','IInd col of BoB'],'SUSE':['Ist col suse','II col suse']}) BOB SUSE 0 Ist column of BOB Ist col suse 1 IInd col of BoB II col suse >>>pd.DataFrame({..same as above---},index=['Prouct a ',' Product b']) >>> pd.Series([30, 35, 40], index=['2015 Sales', '2016 Sales', '2017 Sales'], name='Product A') 2015 Sales 30 2016 Sales 35 2017 Sales 40 Name: Product A, dtype: int64 >>> reviews=pd.read_csv('/mnt/d/wine.csv') >>> reviews show the contents of file wine.csv >>> reviews.country >>> reviews['country'] to see only country column >>> reviews.iloc[0] return only one row >>> review.il...
MAIN COURSE Google IT Automation with Python Professional Certificate Having 6 crouse 1st course was Python Crash which I have DONE got certificate . My friend say 'bati bana kar gand meen dalo' Course No 2 Using Python to Interact with the Operating System ------------------------------ course 2 week 5 added By inputting emp name the program will return its email address By inputing Blossom Gill program will return his email aress blossom@abc.edu Our job is to 1. add a test means test cases like basic_test Edge_test see the bugs, 2. make the necessary corrections in email.py Python file to correct the bugs 3. verify that all the tests pass to make sure the script works! 4. This is The End Lab . Best of luck! and Congrautulations Once again, in other words, same matter/problem as mentioned above What you'll do In this lab, you will: Write a simple test (basic test )to check for basic functionality Write a test...
Introduction to Git and GitHub https://www.coursera.org/learn/introduction-git-github/ On top of search results, here are some great Git resources available online: Pro Git : This book (available online and in print) covers all the fundamentals of how Git works and how to use it. Refer to it if you want to learn more about the subjects that we cover throughout the course. Git tutorial : This tutorial includes a very brief reference of all Git commands available. You can use it to quickly review the commands that you need to use. WEEK NO 1 Intro to Module 1: Version Control First I have to install Git in each computer???????????!!!!!!!!!!!! https://git-scm.com/download/win Instead of new coding we must use the previous codes and extend/add functions/codes because previous codes are alrady tested from bugs and are debugged . in VCS/Git there are two main utilities DIFFand PATCH After installatin of GIT we can track the changes in codes. Week 1 What is version cont...
Comments
Post a Comment