Sei sulla pagina 1di 15

2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

BLOG
skillcrush
BLOG

25+ PYTHON PROGRAMMING EXAMPLES

Scott Morris

 IS TECH RIGHT FOR YOU?


Take our 3-minute quiz to nd out!

https://skillcrush.com/blog/python-programming-examples/ 1/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

BLOG
skillcrush

Get Our Free Ultimate Guide to Coding for Beginners

Make a plan for learning Python and all the other coding skills you need to land a new
job with this 60+ page FREE ebook!

Email

SEND IT!

Skillcrush needs the contact information you provide to us to contact you about our products and services. You may
unsubscribe from these communications at anytime. For information on how to unsubscribe, as well as our privacy
practices and commitment to protecting your privacy, check out our Privacy Policy.

 IS TECH RIGHT FOR YOU?


Take our 3-minute quiz to nd out!

https://skillcrush.com/blog/python-programming-examples/ 2/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

Sure, by now maybe you know that Python is a super popular programming language used
BLOG
skillcrush
by everyone from web developers to data scientists to nancial wizards (meaning that once
you learn Python, the doors are wide open as far as your career options in tech). Buuut you
might still be wondering what exactly Python LOOKS like and how it works.

Until you get a look at a programming language in action, it’s hard to understand what it’s all
about. We’ve rounded up over 25 Python code examples to show exactly how Python
functions in the wild. Each of these Python programming examples includes a link to the
source code, so you can test and tweak them to your heart’s content, and maybe even try to
write your own examples based on what you see here.

And don’t forget to sign up to hear when Skillcrush’s new Python Course is open for
enrollment!

1. Remove Duplicates Function


Automation is a huuuuge part of Python’s playbook and an equally big part of why
programmers love the language so much. When it comes to programming and web
development (or data science or machine learning or any of the other elds Python is used
for), being able to automate processes that would otherwise take forever to complete by
hand is CRUCIAL.

 IS TECH RIGHT FOR YOU?


Take our 3-minute quiz to nd out!

https://skillcrush.com/blog/python-programming-examples/ 3/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

BLOG
skillcrush

This script, for removing duplicates from lists, is a low-key-yet-totally-on-point Python script
example of how powerful Python’s automating functions can be.

2. Magic 8 Ball
Am I dating myself by saying I loved Magic 8 Balls as a kid? Well, if you no longer have yours
(maybe because, like me, you smashed it to see what that murky liquid was inside), you can
recreate the 8 Ball logic with this classic Python script example!

 IS TECH RIGHT FOR YOU?


Take our 3-minute quiz to nd out!

https://skillcrush.com/blog/python-programming-examples/ 4/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

BLOG
skillcrush

 IS TECH RIGHT FOR YOU?


Take our 3-minute quiz to nd out!

https://skillcrush.com/blog/python-programming-examples/ 5/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

BLOG
skillcrush

And if Magic 8 Balls aren’t your thing? You’ll still have a front-row seat to how Python is used
to generate random responses

P.S. you can also tweak this base code to make it serve speci c responses to speci c inputs.

3. Pig Latin Translator


Do ouyay peaksay Igpay Atinlay?

No??

Not a problem. With this Python Pig Latin Translator Script, you’ll be uent in no time. Again,
Python programming examples like this one are fun hints at what’s possible when you learn
Python. Automated Pig Latin translations might seem silly, but you can extend this kind of
scripting to any instance that requires automatic responses to speci c inputs.

4. Use Python to Send Email


 IS TECH RIGHT FOR YOU?
As you start working with scripting languages like Python or JavaScript, you’ll realize what an
Take our 3-minute quiz to nd out!
important role they play in a lot of the web functions we take for granted. Emails are a
perfect example.

https://skillcrush.com/blog/python-programming-examples/ 6/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

Business emails rely on automation. When a user signs up for a product on your site, for
BLOG
skillcrush
instance, you want them to receive a con rmation email…but you DON’T want to be
scheduling and sending each of those emails by hand. Developers use scripting languages
like Python to make that automation happen. Python code examples like this Python script
illustrate how Python can automatically schedule and send those emails so you won’t have
to.

5. Temperature Conversion Program


Is there anything more embarrassing than someone in Europe telling you it’s 32 degrees out,
and not knowing that’s hot not cold? Well, there probably is, but still. Thankfully, we live in
the internet age, where web applications let us convert these kind of numbers at the touch
of a button! Python programming examples, like this temperature conversion program,
show how to script a basic conversion script from Celsius to Fahrenheit (and vice versa),
something you can recreate for automating any kind of system conversion program.

6. Convert KM/H to MPH converter


This Python script example follows the same premise as the temperature conversion
program above, but in this case, it’s a Python script used for converting kilometers per hour
to miles per hour. Compare the two programs so you can get a sense of how to use di erent
methods and inputs to achieve a similar result.

7. Greatest Common Divisor Script


We often say that the tech industry isn’t nearly as math-heavy as outsiders tend to think it is.
Part of that is because most of the heavy computational lifting is done for you by machines.
Still, you DO need to tell machines what to do and how to do before letting them loose. (This
sounds like the start of a classic “robots take over the world” lm…).Python scripts like this
greatest common divisor script are perfect examples of how—once you use Python to give
machines a clear set of instructions—they’ll spit out the computational data you’re looking
for till the end of time.

8. Search a Computer ForRIGHT


 IS TECH SpeciFOR
c Files
YOU?
If you’re looking for a particularTake
le or
ourtype of lequiz
3-minute on to
a computer,
nd out! the last thing you want to
do is hunt and peck your way there. And that means—if you nd yourself working on an
application or software program that needs to be able to nd les—you’ll need a way to
https://skillcrush.com/blog/python-programming-examples/ 7/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

automate the process. So how


THEdo youCODING
ONLINE that? &This Python
DESIGN script
SCHOOL WITH Aexample
 will give you some
clues as to what BLOG
it takes to build a feature for searching individual les and les of a speci c
skillcrush
type.

9. Check Your External IP Address


Needing to know what your external IP address is one of those things that doesn’t come up
everyday…until it does. Here’s a Python script example that shows how easy it is to use
Python for these otherwise tedious kind of tasks.

10. Random Password Generator


Trying to create a website or a mobile app that’s capable of generating random user
passwords? Then this is the Python script for you! Dig into this code and see how to generate
passwords and how you can change the rules to t your own speci c requirements.

11. Username Prompt


Simple (but e ective) Python code examples (like this script for a username prompt) are a
good starting point for building up to more complicated scripts and functions.

12. Grocery Calculator


Here’s a Python script example that shows exactly how useful Python can be for everyday
tasks. Trying to keep track of your grocery budget? There’s a Python script for that! This
grocery calculator uses Python code to track and tally the costs of entered food items.

13. Tweet Search


Ever tried looking for an individual tweet from a Twitter account you follow? Scrolling, and
scrolling, and scrolling, and WHOOPS..accidentally ending up back at the top of the page?
NOT COOL. Let this Python script example makes things easier for you by automating that
search function.

14. Convert to Seconds


 IS TECH RIGHT FOR YOU?
Continuing in the vein of PythonTake
programming examples that automate measurement
our 3-minute quiz to nd out!
conversions, this Python script converts hours into seconds…again, something you can
certainly do by hand, but why would you when you know how to script with Python?

https://skillcrush.com/blog/python-programming-examples/ 8/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

BLOG
skillcrush

Get Our Free Ultimate Guide to Coding for Beginners

Make a plan for learning Python and all the other coding skills you need to land a new
job with this 60+ page FREE ebook!

Email

SEND IT!

Skillcrush needs the contact information you provide to us to contact you about our products and services. You may
unsubscribe from these communications at anytime. For information on how to unsubscribe, as well as our privacy
practices and commitment to protecting your privacy, check out our Privacy Policy.

 IS TECH RIGHT FOR YOU?


Take our 3-minute quiz to nd out!

15. Dice Roller


https://skillcrush.com/blog/python-programming-examples/ 9/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

Whether it’s board game or casino night at home and you’re all out of dice, or you just need
BLOG
skillcrush
a random number generated between 1-6 (or any range you’d like if you tweak the code),
this Python script example has virtual dice rolling on lockdown.

16. Vowel Remover Function


File this one under “Python programming examples that show how slick Python is for
isolating speci c data.” This script identi es all vowels in a eld of text and removes them.

17. Hypnosis Generator


You are getting verrrrry sleeeeepy…no, not because you’re 17 entries deep in this list, but
because you just checked out this Python script example—a hypnotism generator! Yeah, it
sounds like a joke, BUT if you explore this code you’ll see how to use Python to prioritize data
and produce di erent results from the same date pool depending on your parameters.

18. Guessing Game


There are other gami ed Python code examples on this list, but this Python script adds an
extra element. Sure, it generates a random number that the user is asked to guess, but it
also includes a loop that causes the script to repeat itself UNTIL the user actually inputs the
correct number.

19. Fizz Buzz Solution


And over here we have your standard zz buzz solution. Wait, you don’t know what that
means? Neither do I, but that’s not really the point of this Python script example. This script
prints the numbers 1-100, but for multiples of 3 prints “Fizz” instead of the number and for
multiples of 5 prints “buzz.” And that point of THAT is another lesson in Python’s powers of
data isolation and conversion.

20. Color Gradients and Intermediaries


This handy Python script example shows how to use Python to calculate that elusive color
andISintermediaries.
information like gradients TECH RIGHT FOR YOU?
Take our 3-minute quiz to nd out!
21. Get All Website Links Function

https://skillcrush.com/blog/python-programming-examples/ 10/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

Ever been tasked with nding all the links on a speci c website and started seeing double as
BLOG
skillcrush
you pored over the screen making sure you weren’t missing any? The beauty of scripting
with Python is that you could have just run this Python script example instead, and extracted
each link automatically from the sea of data.

22. Average Score Calculator


This super simple Python script example asks users to input three scores and then promptly
produces the average. Of course, you can add more numbers by adjusting the code (as well
as more complicated mathematical functions), but this gives a sense of Python’s
computational powers.

23. Hangman Game


Oh, Hangman. A game played on the back of many a napkin and kid’s menu during meals
out in my youth. This Python script example breaks down the mechanics of the Hangman
game and turns it into a digital session of guessing variables.

24. Number Reverser


We continue our list with Python programming examples that highlight fun with numbers.
This Python number reverser script will reverse any given number. So, 1234 becomes 4321.

25. Print Odd Numbers in a Given Range


This is another simple case of using Python to automate a task that would be dull and time-
consuming if done manually. Looking for a list of odd numbers in a given range? Simply
execute this Python script example and BOOM! Mission accomplished.

26. Print All Integers That Aren’t Divisible by Either 2 or


3 and Lie between 1 and 50
Ready for Python code examples that get even wilder with their mathematical parameters? If
you’re looking to print all integers that aren’t divisible by either 2 or 3 (AND lie between 1 and
50), well my friend, this is
IS TECH RIGHT FOR YOU?
the Python script for you!
Take our 3-minute quiz to nd out!

https://skillcrush.com/blog/python-programming-examples/ 11/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

BLOG
skillcrush

Scott Morris
Scott Morris is Skillcrush's sta writer and content producer. Like all the members of Skillcrush's team, he
works remotely (in his case from Napa, CA). He believes that content that's worth reading (and that your
audience can nd!) creates brands that people follow. He's experienced writing on topics including jobs
and technology, digital marketing, career pivots, gender equity, parenting, and popular culture. Before
starting his career as a writer and content marketer, he spent 10 years as a full-time parent to his
daughters Veronica and Athena.

You'll probably like to check out...

 IS TECH RIGHT FOR YOU?


Take 13
Tech 101: What is Python? Plus, our 3-minute quiz
Whatto nd out!
Is Python Used For? 5 Industries
Reasons Why You Should Learn It That Can’t Do Without It

https://skillcrush.com/blog/python-programming-examples/ 12/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

THE ONLINE CODING & DESIGN SCHOOL WITH A 

BLOG
skillcrush

8 Common Job Titles That Use Python How to Learn Python: A Complete
Every Day Guide

Want more articles like this?


Sign up to get the most recent tech news, tips and career advice.

Enter Your Email

 IS TECH RIGHT FOR YOU?


SIGN UP FOR FREE
Take our 3-minute quiz to nd out!

Skillcrush needs the contact information you provide to us to contact you about our products and services. You may
unsubscribe from these communications at anytime. For information on how to unsubscribe, as well as our privacy

https://skillcrush.com/blog/python-programming-examples/ 13/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

practices and commitment to protecting


THE your privacy,
ONLINE CODINGcheck out our
& DESIGN PrivacyWITH
SCHOOL Policy.
A

BLOG
skillcrush

Haven't Found What You're Looking For?

Enter Search Terms 

COURSES

View All Courses

FREE Coding Camp

Break Into Tech Package

Digital Marketing

Front End + React JS

Front End Development

Python for Web Apps & Data

User Experience (UX)

Visual Design

Web Design

Web Development

WordPress Development

RESOURCES

How to Start a Career in Web Development

Finding a Remote Job: A Step-by-Step Guide

The 9-Step Method to Make a Career Pivot

 IS TECH RIGHT FOR YOU?


The Guide to Landing Your First Web Design Job

Tech 101: What is Digital Marketing?


Take our 3-minute quiz to nd out!

COMPANY

https://skillcrush.com/blog/python-programming-examples/ 14/15
2/15/2020 25+ Examples of Real Python Programming Code - Skillcrush

About the Team THE ONLINE CODING & DESIGN SCHOOL WITH A 

Blog BLOG
skillcrush
Jobs

Sign In

 NEED HELP?
Check out the FAQs, or email us at hello@skillcrush.com.

skillcrush
© 2012 - 2020 Skillcrush, Inc. All Rights Reserved.

Site Map Privacy Policy Terms of Service

 IS TECH RIGHT FOR YOU?


Take our 3-minute quiz to nd out!

https://skillcrush.com/blog/python-programming-examples/ 15/15

Potrebbero piacerti anche