Udemy
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
Development
Web Development Data Science Mobile Development Programming Languages Game Development Database Design & Development Software Testing Software Engineering Software Development Tools No-Code Development
Business
Entrepreneurship Communication Management Sales Business Strategy Operations Project Management Business Law Business Analytics & Intelligence Human Resources Industry E-Commerce Media Real Estate Other Business
Finance & Accounting
Accounting & Bookkeeping Compliance Cryptocurrency & Blockchain Economics Finance Finance Cert & Exam Prep Financial Modeling & Analysis Investing & Trading Money Management Tools Taxes Other Finance & Accounting
IT & Software
IT Certifications Network & Security Hardware Operating Systems & Servers Other IT & Software
Office Productivity
Microsoft Apple Google SAP Oracle Other Office Productivity
Personal Development
Personal Transformation Personal Productivity Leadership Career Development Parenting & Relationships Happiness Esoteric Practices Religion & Spirituality Personal Brand Building Creativity Influence Self Esteem & Confidence Stress Management Memory & Study Skills Motivation Other Personal Development
Design
Web Design Graphic Design & Illustration Design Tools User Experience Design Game Design 3D & Animation Fashion Design Architectural Design Interior Design Other Design
Marketing
Digital Marketing Search Engine Optimization Social Media Marketing Branding Marketing Fundamentals Marketing Analytics & Automation Public Relations Paid Advertising Video & Mobile Marketing Content Marketing Growth Hacking Affiliate Marketing Product Marketing Other Marketing
Lifestyle
Arts & Crafts Beauty & Makeup Esoteric Practices Food & Beverage Gaming Home Improvement & Gardening Pet Care & Training Travel Other Lifestyle
Photography & Video
Digital Photography Photography Portrait Photography Photography Tools Commercial Photography Video Design Other Photography & Video
Health & Fitness
Fitness General Health Sports Nutrition & Diet Yoga Mental Health Martial Arts & Self Defense Safety & First Aid Dance Meditation Other Health & Fitness
Music
Instruments Music Production Music Fundamentals Vocal Music Techniques Music Software Other Music
Teaching & Academics
Engineering Humanities Math Science Online Education Social Science Language Learning Teacher Training Test Prep Other Teaching & Academics
Web Development JavaScript React Angular CSS Node.Js PHP HTML5 Vue JS
AWS Certification Microsoft Certification AWS Certified Solutions Architect - Associate AWS Certified Cloud Practitioner CompTIA A+ Amazon AWS Cisco CCNA Microsoft AZ-900 CompTIA Security+
Microsoft Power BI SQL Tableau Data Modeling Business Analysis Business Intelligence MySQL Qlik Sense Data Analysis
Unity Unreal Engine Game Development Fundamentals C# 3D Game Development C++ Unreal Engine Blueprints 2D Game Development Blender
Google Flutter iOS Development Android Development Swift React Native Dart (programming language) Kotlin Mobile App Development SwiftUI
Graphic Design Photoshop Adobe Illustrator Drawing Digital Painting Canva InDesign Character Design Procreate Digital Illustration App
Life Coach Training Neuro-Linguistic Programming Personal Development Personal Transformation Life Purpose Mindfulness Sound Therapy Meditation Emotional Intelligence
Business Fundamentals Entrepreneurship Fundamentals Freelancing Business Strategy Startup Business Plan Online Business Blogging Leadership
Digital Marketing Social Media Marketing Marketing Strategy Google Analytics Internet Marketing Email Marketing Copywriting YouTube Marketing Startup

DevelopmentProgramming LanguagesPython

Python for Beginners Start to Code with Python write code

Includes several Python projects and loaded with code examples Learn how to code with Python perfect for Beginners
Rating: 4.5 out of 54.5 (1 rating)
43 students
Created by Laurence Svekis
Last updated 10/2021
English
English [Auto]

What you'll learn

  • How to write Python code
  • Create simple applications using Python Code
  • Learn the basics of Python and how it works
  • Setup a development environment and write Python Code

Requirements

  • Basic computer skills
  • Basic programming understanding
  • Desire to learn more about Python

Description

Python Online Course For Beginners online course to introduce beginners to writing Python code and creating applications.

Enroll now to get instant access to:

  • 4+ hours of premium lessons

  • 31 page downloadable workbook source code, tips, resources and challenges

  • Premium instructor support to help you learn

  • Lifetime access to course updates

Python is an excellent language to start programming with, its powerful and reality easy to get started with. You can see results and run the code right away and most computers require very little setup to start coding.

Includes several Python projects and loaded with code examples , you will travel through every essential element of programming and understand how the entire programming of python really works.

Python is perfect for both small and large scale projects. Designed to help programmers write clear and logical code made to be human readable.

Common uses for Python include, task automation, data analysis and visualization and development web applications. Due to the ease of getting started with Python it also gets commonly adopted by many non-programmers to help with tasks.

One of the most popular programming languages. Small learning curve, you can get started with Python quickly. Powerful and straightforward. So many people are learning Python, doing cool things and you can get started with Python quickly.

Python for Beginners - perfect language to learn how to code.

  • How to get setup and ready to code using Python, setup your development environment.

  • Start directly on your computer you already have everything you need to write Python

  • Python is perfect for both small and large scale projects

  • Code that is written is easy to read because of the use of indentation and object oriented approach.

  • Ease of getting started with Python - great for non programmers who want to learn

  • Small learning curve, you can get started with Python quickly

  • One of the most popular programming languages.

  • Most PCs and Mac will come with Python installed already

So many people are learning Python, doing cool things and you can get started with Python quickly.

Help everyone learn coding -

How to setup your coding environment and start writing Python on your computer today.

Everything you need to know about Getting Started with Python Code

Walk through on the first steps to set up your computer to be ready to write Python code. How to install Python on a Mac and Windows Machine. How to set up and prepare your code editor for writing Python Code.

  • Introduction to setting up your machine to write Python Code

  • Mac OS and Windows install and Setup of Python

  • Editor Setup for Coding Python.

Fundamentals of Coding with Python

Python uses indentation and how it works is that the indentation indicates a block of code. In Python indentation is very important.

  • Commenting in Python Code Multi line comments

  • Python Code Variables How to create variables and use them in code

  • Python Data Types Strings Integers Booleans Lists Sets Dictionaries

  • How to get the User input in the terminal and assign it to a variable

  • Project - Python Calculator

  • Project - Favorite Number Messages

  • Python How to apply logic with conditions

  • Project - Code bouncer allowed in or not?

  • Coding Loops and iterations while and for

  • Python Project Number Guessing Game

  • How Python Functions work

  • What is Python Lambda and how it works

  • Python Function Scope.

  • Python built in Methods

  • How to use Python Modules Create your own modules to use in your code

Coding Projects to you can create with Python

Get coding and creating simple projects with Python to practice what you've learned and develop your skills

  • Python Coding Project Countdown timer code

  • Python Coding Project Dice game in Python highest roll wins

  • Python Coding Project Rock Paper Scissors Python coding Game

Create a countdown timer

  1. create a function that will decrease a val

  2. Using Modulus and Floor Division calculate the minutes and seconds

  3. Create a string output value using format to structure it as minutes and seconds

  4. Using the time module import the sleep method slowing the output with a 1 second delay

  5. Subtract from the total seconds

  6. Once the while loop completes print the time is up and invoke the start function again

  7. Create a starting function that gets the users inputs for the countdown timer in total seconds. Check if the input is numeric if it is send the total second value to the countdown function

Dice game in Python

Play against the computer, role the dice get a random value and see who scores more. The highest role wins the game. Perfect game to practice and learn more about using random in game logic, and applying conditions to check for a winner

  1. Import the random module

  2. setup default variables for score and set the values of the roles from min to max.

  3. Create a function to house the game coding

  4. Setup a while loop that will run the block of game code

  5. Game code generates random values for both the player and computer.

  6. Apply conditions to check who wins

  7. output the feedback and results to the player. Keeping score of the rounds.

  8. Allow player to exit and end game

Rock Paper Scissors Python coding Game

Rock paper scissors, played between the player and the computer. Setup the game make a selection and see who wins. Rock beats Scissors and crushes them, Paper covers the rock and wins, Scissors can cut up the paper to win.

  1. import the random module

  2. setup the default values and array

  3. create the gameplay function

  4. create a loop within the gameplay function

  5. Get the user selection and generate a random selection for the computer

  6. Apply logic to see who wins

  7. Let the player exit the game or go for another round.

Who this course is for:

  • Beginners to coding Python
  • Anyone who wants to write code
  • Anyone who is looking to start coding
  • Everyone who enjoys coding applications

Instructor

Laurence Svekis
Instructor, GDE, Application Developer
Laurence Svekis
  • 4.4 Instructor Rating
  • 50,726 Reviews
  • 849,697 Students
  • 329 Courses

I'm here to help you learn, achieve your dreams, come join me on this amazing adventure today
Google Developers Expert - GSuite

Providing Web development courses and digital marketing strategy courses since 2002.

Innovative technology expert with a wide range of real world experience. Providing Smart digital solutions online for both small and enterprise level businesses.

"I have a passion for anything digital technology related, enjoy programming and the challenge of developing successful digital experiences. As an experienced developer, I created my first computer applications in 1990, and my first website in 1998.  I enjoy sharing my knowledge with others and want to help you share in the wonderful opportunities that the internet provides."

"Learning, understanding with a strong passion for education.  The internet has provided us with new opportunities to expand and share knowledge."

Want to learn more about becoming a web developer, do you want to experience the freedom that technology provides for us? Learn how to bring amazing things to life online.  Technology connects us all in many ways.  It opens up doors to those who embrace it and learn how to make those connections real.

"My courses are designed to help you achieve your goals, learn and update skills"

Background : An experienced web application developer, having worked on multiple enterprise level applications, hundreds of websites, business solutions and many unique and innovative web applications.  Web application development areas of expertise include HTML, CSS, JavaScript, JQuery, Bootstrap, PHP and MySQL. Anything to do with web creation and digital experience. Passionate about everything to do with web application development, programming to online marketing with a strong focus on social media and SEO. 

"Understanding technology provides a means to better connect with users.  It also opens so many doors.   Knowledge is the key to success and I want to help you experience what technology has to offer. I'm passionate about web technologies, and look forward to sharing my knowledge and experience with you!"

Top companies choose Udemy Business to build in-demand career skills.
NasdaqVolkswagenBoxNetAppEventbrite
  • Udemy Business
  • Teach on Udemy
  • Get the app
  • About us
  • Contact us
  • Careers
  • Blog
  • Help and Support
  • Affiliate
  • Investors
  • Impressum Kontakt
  • Terms
  • Privacy policy
  • Cookie settings
  • Sitemap
  • Accessibility statement
Udemy
© 2022 Udemy, Inc.