Topic: "py4e"
jmelahman/python-for-everybody-solutions
Solutions to Python for Everybody: Exploring Data using Python 3 by Charles Severance
Language: Python - Size: 1.91 MB - Last synced at: 4 days ago - Pushed at: almost 2 years ago - Stars: 206 - Forks: 152

AbhishekMali21/PYTHON-FOR-EVERYBODY
| Python for Everybody - Exploring Data Using Python 3 | Author - Charles R. Severance @csev | Chapter Practices & Exercises |
Language: Jupyter Notebook - Size: 902 KB - Last synced at: 21 days ago - Pushed at: about 5 years ago - Stars: 21 - Forks: 9

jaykasiphat/py4e
Python for Everybody Specialization
Language: Python - Size: 639 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 11 - Forks: 10

rish-codes/py4e
My progress through the Python For Everybody Specialization by University of Michigan, taught by Professor Charles Russell Severance
Language: Python - Size: 160 KB - Last synced at: about 2 years ago - Pushed at: almost 5 years ago - Stars: 3 - Forks: 1

Phantom-fs/Python-for-Everybody-py4e
PYTHON FOR EVERYBODY (py4e) Coursera SPECIALIZATION by UNIVERSITY OF MICHIGAN
Language: Python - Size: 9.92 MB - Last synced at: almost 2 years ago - Pushed at: almost 2 years ago - Stars: 2 - Forks: 0

EhabR98/Using-the-GeoJSON-API
In this program you will use a GeoLocation lookup API modelled after the Google API to look up some universities and parse the returned data.
Size: 4.88 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 2 - Forks: 1

ari-dixit/Py4e
Based off of lessons from Dr. Chuck Severance's Py4e course on Coursera. Repo will be updated as I progress through the specialization.
Language: Python - Size: 107 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 1 - Forks: 0

hadevyi/Learn-Online-Learning
🖥 공개자료 공부하기 🖥
Language: Python - Size: 222 KB - Last synced at: 9 months ago - Pushed at: over 2 years ago - Stars: 1 - Forks: 1

Sajadahf/Python-for-Everybody-Specialization
Sample code of Python For Everybody Specialization - Coursera
Language: Python - Size: 73.2 KB - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 1 - Forks: 0

dorothearos/py4e-redo
Python For Everyone source code and exercises
Language: Python - Size: 934 KB - Last synced at: 8 months ago - Pushed at: about 3 years ago - Stars: 1 - Forks: 0

hhhameem/problem-solving
solved problems from various resources
Language: JavaScript - Size: 2.51 MB - Last synced at: almost 2 years ago - Pushed at: about 3 years ago - Stars: 1 - Forks: 0

cmobrien123/Python-for-Everybody-Courses-1-through-4
This is a collection of different assigments completed as part of the Programming for Everybody (Getting Started with Python) Coursera course: https://www.coursera.org/learn/python?
Language: Python - Size: 2.45 MB - Last synced at: about 2 years ago - Pushed at: almost 4 years ago - Stars: 1 - Forks: 0

acidsafari/congenial-journey
the first repository created to showcase the work done during the PY4E course, and in case anyone needs it.
Language: Python - Size: 67.4 KB - Last synced at: about 1 year ago - Pushed at: almost 4 years ago - Stars: 1 - Forks: 0

EhabR98/Extracting-Data-from-JSON
The program will prompt for a URL, read the JSON data from that URL using urllib and then parse and extract the comment counts from the JSON data, compute the sum of the numbers in the file.
Language: Python - Size: 1000 Bytes - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

EhabR98/python4everyone-xml-assign
n this assignment you will write a Python program somewhat similar to http://www.py4e.com/code3/geoxml.py. The program will prompt for a URL, read the XML data from that URL using urllib and then parse and extract the comment counts from the XML data, compute the sum of the numbers in the file. We provide two files for this assignment. One is a sample file where we give you the sum for your testing and the other is the actual data you need to process for the assignment. Sample data: http://py4e-data.dr-chuck.net/comments_42.xml (Sum=2553) Actual data: http://py4e-data.dr-chuck.net/comments_988433.xml (Sum ends with 94) You do not need to save these files to your folder since your program will read the data directly from the URL. Note: Each student will have a distinct data url for the assignment - so only use your own data url for analysis. Data Format and Approach The data consists of a number of names and comment counts in XML as follows: <comment> <name>Matthias</name> <count>97</count> </comment> You are to look through all the <comment> tags and find the <count> values sum the numbers. The closest sample code that shows how to parse XML is geoxml.py. But since the nesting of the elements in our data is different than the data we are parsing in that sample code you will have to make real changes to the code. To make the code a little simpler, you can use an XPath selector string to look through the entire tree of XML for any tag named 'count' with the following line of code: counts = tree.findall('.//count') Take a look at the Python ElementTree documentation and look for the supported XPath syntax for details. You could also work from the top of the XML down to the comments node and then loop through the child nodes of the comments node. Sample Execution $ python3 solution.py Enter location: http://py4e-data.dr-chuck.net/comments_42.xml Retrieving http://py4e-data.dr-chuck.net/comments_42.xml Retrieved 4189 characters Count: 50 Sum: 2...
Language: Python - Size: 2.93 KB - Last synced at: about 2 years ago - Pushed at: over 4 years ago - Stars: 1 - Forks: 0

CougNinja24/PY4E
Python 4 Everybody Files Exercise Files
Language: Python - Size: 2.48 MB - Last synced at: over 1 year ago - Pushed at: over 6 years ago - Stars: 1 - Forks: 0

Tezcatlipoca0000/my_mclip
A simple program that copies predefined text to the clipboard using the "Run" command in Windows
Language: Python - Size: 15.6 KB - Last synced at: 17 days ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

Tezcatlipoca0000/my_py4e
From Dr. Chuck's "Python for everybody", this are the lessons and excercises
Language: Python - Size: 749 KB - Last synced at: 17 days ago - Pushed at: about 1 year ago - Stars: 0 - Forks: 0

ikorepanov/py4e
py4e MOOC exercises
Language: Python - Size: 15.6 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

AdventureAdept/PY4E
| Python for Everybody: Exploring Data in Python 3 | Author - Charles R. Severance @csev | Chapter Practices & Exercises |
Language: Python - Size: 803 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

vinay-code7/all-certificates
Collection of all my Certificates and Badges
Size: 13.8 MB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

JoanneHelenMana/PY4E-book-exercises
My attempts at solving the exercises in the PY4E book.
Language: Python - Size: 18.6 KB - Last synced at: over 1 year ago - Pushed at: over 1 year ago - Stars: 0 - Forks: 0

aclongo/web-services
These are my solutions to the Extracting Data from XML and JSON assignments for Chapter 13 of Python for Everybody
Language: Python - Size: 32.2 KB - Last synced at: about 1 year ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

aclongo/python-web-data
This is my solution for scraping numbers and following links in HTML using BeautifulSoup, Chapter 12 assignments of Python for Everybody
Language: Python - Size: 10.7 KB - Last synced at: about 1 year ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

daiveeknuckles/py4e
Solutions to Python for Everybody: Exploring Data using Python 3 by Charles Severance
Language: Python - Size: 31.3 KB - Last synced at: almost 2 years ago - Pushed at: about 2 years ago - Stars: 0 - Forks: 0

helenadw/py4e
Problem solutions for PY4E
Language: Python - Size: 1000 Bytes - Last synced at: about 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

j9pino/PY4E
Potential solutions to the exercises created by Dr. Chuck.
Language: Python - Size: 52.7 KB - Last synced at: almost 2 years ago - Pushed at: over 2 years ago - Stars: 0 - Forks: 0

ValiPython/Python-for-Everybody-PY4E
My solutions to the 'Python for Everybody' course (Charles Severance aka Dr. Chuck) exercises. https://www.py4e.com/
Language: Python - Size: 15.6 KB - Last synced at: about 2 years ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

vitorhonna/py4e
Python for Everybody Specialization - University of Michigan
Language: Python - Size: 1.49 MB - Last synced at: about 2 months ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

Auj7/PY4E-Specialization
My programming solution to the assignments of Python for Everybode Specialization.
Language: Python - Size: 15.6 KB - Last synced at: almost 2 years ago - Pushed at: almost 3 years ago - Stars: 0 - Forks: 0

Sivnerof/PY4E
Free and open source begginer Python class offered by Dr. Charles Severance (https://www.py4e.com/)
Language: Python - Size: 1.07 MB - Last synced at: about 2 years ago - Pushed at: about 3 years ago - Stars: 0 - Forks: 0

Norky101/Hours-worked-and-overtime-calculator-
Hours worked and overtime calculator using Python
Language: Python - Size: 1000 Bytes - Last synced at: about 2 years ago - Pushed at: over 3 years ago - Stars: 0 - Forks: 0

sindorim5/PY4E
PY4E Examples and study memos...
Language: Python - Size: 16.1 MB - Last synced at: about 1 year ago - Pushed at: over 3 years ago - Stars: 0 - Forks: 0

imhuangshihui/learn-python-with-ex
Some python practice solutions from class, py4e, rosalind and so on
Language: Python - Size: 452 KB - Last synced at: about 2 years ago - Pushed at: over 3 years ago - Stars: 0 - Forks: 0

ravi-prakash1907/Using-Database-in-Python
A repository for a course on the Pytho Specilization by Coursera (py4e)
Language: Python - Size: 6.15 MB - Last synced at: about 2 years ago - Pushed at: over 3 years ago - Stars: 0 - Forks: 1

the-llama-codes16/the-llama-codes-Python
These are my outputs while studying Python. I'm using Dr. Chuck's Python for Everybody, and the programs here are my outputs for every exercise in the book.
Language: Python - Size: 773 KB - Last synced at: about 2 years ago - Pushed at: almost 4 years ago - Stars: 0 - Forks: 0

Ekimkuznetsov/My_projects
In this Folder I collect files from my PY4E course
Language: Python - Size: 19.5 KB - Last synced at: over 1 year ago - Pushed at: about 4 years ago - Stars: 0 - Forks: 0

JC6/coursera-py4e-assignments
Coursera Python for Everybody Specialization Assignments
Language: Python - Size: 110 KB - Last synced at: almost 2 years ago - Pushed at: over 4 years ago - Stars: 0 - Forks: 0

vardecab/coursera-py4e
Assignments from Python for Everybody course on Coursera.
Language: Python - Size: 40 KB - Last synced at: about 2 years ago - Pushed at: over 5 years ago - Stars: 0 - Forks: 0

HeidiTran/py4e
Exercises from Python for Everybody: Exploring Data Using Python 3 by Charles R. Severance
Language: Python - Size: 52.7 KB - Last synced at: about 2 years ago - Pushed at: over 6 years ago - Stars: 0 - Forks: 1

jayanthsarma8/py4e-assignments
py4e assignments
Language: Python - Size: 344 KB - Last synced at: about 1 year ago - Pushed at: over 6 years ago - Stars: 0 - Forks: 0

abhi40308/coursera-capstone-python-py4e
Code for Capstone: Retrieving, Processing, and Visualizing Data with Python, university of michigan
Language: Python - Size: 2.53 MB - Last synced at: about 2 months ago - Pushed at: about 7 years ago - Stars: 0 - Forks: 0
