Navigation Menu
Search code, repositories, users, issues, pull requests..., provide feedback.
We read every piece of feedback, and take your input very seriously.
Saved searches
Use saved searches to filter your results more quickly.
To see all available qualifiers, see our documentation .
- Notifications You must be signed in to change notification settings
Current repository contains all assignments, notes, quizzes and course materials from the "Python for Everybody Specialization" provided by Coursera and University of Michigan.
sersavn/coursera-python-for-everybody-specialization
Folders and files.
Name | Name | |||
---|---|---|---|---|
17 Commits | ||||
Repository files navigation
Python for everybody specialization.
Coursera Python for Everybody specialization is offered by University of Michigan.
Specialization includes following courses:
- Getting started with python
- Python Data Structures
- Using python to Access Web Data
- Using Databases with Python
- Capstone: Retrieving Processing and Visualizing Data with Python
Each course described above contains assignments answers, course material and might contain some notes. Some course slides seemed to awesome and entartaining for me, so I could not resist adding all of them here 😃.
Additional materials
All additional course materials also can be found here . Also here is the link to the HTML version of Charles R. Severance book.
Incredible Lecturer
Without him existing on a planet I probably would never quit civil engineering and got interest in programming at all. Professor Charles Severance, University of Michigan.
- Python 93.6%
- JavaScript 5.3%
Python for Everybody
Exercise 11.1, exercise 11.2.
- Table of Contents
- Course Home
- Assignments
- Peer Instruction (Instructor)
- Peer Instruction (Student)
- Change Course
- Instructor's Page
- Progress Page
- Edit Profile
- Change Password
- Scratch ActiveCode
- Scratch Activecode
- Instructors Guide
- About Runestone
- Report A Problem
- Mixed-Up Code Questions
- Write Code Questions
- Peer Instruction: Tuples Multiple Choice Questions
- 11.1 Tuples are Immutable
- 11.2 Comparing Tuples
- 11.3 Tuple Assignment
- 11.4 Dictionaries and Tuples
- 11.5 Multiple Assignment with Dictionaries
- 11.6 The Most Common Words
- 11.7 Using Tuples as Keys in Dictionaries
- 11.8 Sequences: Strings, Lists, and Tuples - Oh My!
- 11.9 Debugging
- 11.10 Glossary
- 11.11 Multiple Choice Questions
- 11.12 Tuples Mixed-Up Code Questions
- 11.13 Write Code Questions
- 10.10. Write Code Questions" data-toggle="tooltip">
- 11.1. Tuples are Immutable' data-toggle="tooltip" >
Before you keep reading...
Runestone Academy can only continue if we get support from individuals like you. As a student you are well aware of the high cost of textbooks. Our mission is to provide great books to you for free, but we ask that you consider a $10 donation, more if you can or less if $10 is a burden.
Making great stuff takes time and $$. If you appreciate the book you are reading now and want to keep quality materials free for other students please consider a donation to Runestone Academy. We ask that you consider a $10 donation, but if you can give more thats great, if $10 is too much for your budget we would be happy with whatever you can afford as a show of support.
11. Tuples ¶
- 11.1. Tuples are Immutable
- 11.2. Comparing Tuples
- 11.3. Tuple Assignment
- 11.4. Dictionaries and Tuples
- 11.5. Multiple Assignment with Dictionaries
- 11.6. The Most Common Words
- 11.7. Using Tuples as Keys in Dictionaries
- 11.8. Sequences: Strings, Lists, and Tuples - Oh My!
- 11.9. Debugging
- 11.10. Glossary
- 11.11. Multiple Choice Questions
- 11.12. Tuples Mixed-Up Code Questions
- 11.13. Write Code Questions
COMMENTS
#!/usr/bin/env python # Chapter 11 Assignment: Extracting Data With Regular Expressions # Finding Numbers in a Haystack # In this assignment you will read through and parse a file with text and # numbers. You will extract all the numbers in the file and compute the sum of # the numbers. # Data Files # We provide two files for this assignment.
Assignment solutions for python for everybody. Contribute to sweehors/python-for-everybody development by creating an account on GitHub.
Coursera Python for Everybody specialization is offered by University of Michigan. Overview. Specialization includes following courses: Getting started with python. Python Data Structures. Using python to Access Web Data. Using Databases with Python. Capstone: Retrieving Processing and Visualizing Data with Python.
Order the book on Amazon: https://amzn.to/3huCub6If you want to support the channel, any donation in PayPal helps: https://bit.ly/2Ss5i90Here is the code for...
""" Exercise 11.2: Write a program to look for lines of the form 'New Revision: 39771' and extract the number from each of the lines using a regular expression and the findall() method. Compute the average of the numbers and print out the average.
1. Why Program? 1.1. Why should you learn to write programs? 1.2. Creativity and motivation. 1.3. Computer hardware architecture. 1.4. Understanding programming. 1.5. Words and sentences in Python. 1.6. Conversing with Python. 1.7. Terminology: Interpreter and compiler. 1.8. Writing a program. 1.9. What is a program? 1.10.
11.3. Tuple Assignment ¶. One of the unique syntactic features of Python is the ability to have a tuple on the left side of an assignment statement. This allows you to assign more than one variable at a time when the left side is a sequence.
Find step-by-step solutions and answers to Exercise 11 from Python for Everyone - 9781118626139, as well as thousands of textbooks so you can move forward with confidence.
Order the book on Amazon: https://amzn.to/3huCub6If you want to support the channel, any donation in PayPal helps: https://bit.ly/2Ss5i90Follow me on Faceboo...
This Chapter. 11. Tuples ¶. 11.1. Tuples are Immutable. 11.2. Comparing Tuples. 11.3. Tuple Assignment.