Companies Home Search Profile

Python for Absolute Beginners: Learn Python in a Week!

Focused View

Andreas Exadaktylos

8:06:39

125 View
  • 1. Introduction.mp4
    02:15
  • 2.1 Course Study Plan Python.xlsx
  • 2.2 Github Link For Python Files.html
  • 2.3 Project Files.zip
  • 2.4 Python Course Slides.pdf
  • 2. Course Resources & Important Notes for New Students.mp4
    00:59
  • 3. Five (5) Beginner Tips for Learning python Programming.mp4
    06:55
  • 1. Download & Install Python 3 (Windows).mp4
    03:44
  • 2. Download & Install Python 3 (masOS & Ubuntu Linux).html
  • 3. Using the Python Shell.mp4
    02:09
  • 4.1 Create a Replit Account.html
  • 4. REPLIT A Powerful Online IDE (Python Editor).mp4
    08:13
  • 1.1 s2 helloworld.zip
  • 1. Hello World! - Writing our First Program.mp4
    03:30
  • 2. CHALLENGE Interact with IDLE (Python Shell).mp4
    04:27
  • 3.1 S3 PYTHON RESERVED KEYWORDS.pdf
  • 3.2 s3 variables.zip
  • 3. Variables.mp4
    06:10
  • 4. Create a Variable.html
  • 5. Adding Comments.mp4
    03:06
  • 6.1 Step Through Execution with Python Tutor.html
  • 6.2 Step Through Execution with Thonny IDE.html
  • 6. How to Find Help.mp4
    03:04
  • 7. Getting Started.html
  • 1.1 S3 Arithmetic Operators.pdf
  • 1.2 s3 basicoperators.zip
  • 1.3 S3 Comparison Operators.pdf
  • 1. Arithmetic & Comparison Operators.mp4
    06:20
  • 2. The Remainder Operator.mp4
    05:08
  • 3.1 S3 Logical Operators.pdf
  • 3. Logical (Boolean) & Chained Comparison Operators.mp4
    02:34
  • 4.1 s3-exercise3-1.zip
  • 4.2 s3-exercise3-2.zip
  • 4. Exercise 2 Operators & Variables.html
  • 5. Integers.mp4
    04:14
  • 6. Floating Point Numbers & Complex Numbers.mp4
    03:17
  • 7. BMI Calculator.html
  • 8.1 s5 input.zip
  • 8. Interact With User Input().mp4
    03:56
  • 9. Reading Numbers with the Input Function.mp4
    06:32
  • 10. Input exercise.html
  • 11. Switch the values stored in the Variables a and b.html
  • 12. CHALLENGE Calculating a Percentage.mp4
    02:47
  • 13. CHALLENGE Calculating an Average.mp4
    04:05
  • 14. CHALLENGE Converting a Math Formula to a Programming Statement.mp4
    05:07
  • 15. Variables and Operators.html
  • 16. Making your Program Interactive.html
  • 1.1 EscapeCharacters.pdf
  • 1.2 s4 multiline.zip
  • 1.3 StringFormatSymbols.pdf
  • 1. What is a String.mp4
    05:23
  • 2. Converting Strings to Numbers.mp4
    02:02
  • 3. Simple Data Types.html
  • 4. String Indexing.mp4
    02:16
  • 5. String Slicing.mp4
    03:10
  • 6. String Concatenation.mp4
    02:09
  • 7. Manipulate Strings with Methods.mp4
    04:18
  • 8.1 Percent Formatting Examples.pdf
  • 8. String Formatting.mp4
    03:14
  • 9.1 Formatting Strings.pdf
  • 9.2 The most commonly used functions for searching strings.pdf
  • 9. F-Strings An Improved String Formatting Syntax.mp4
    04:46
  • 10.1 s4-exercise4.zip
  • 10. Exercise 5 Strings.html
  • 11. Print() Formatting Methods.mp4
    07:30
  • 12. Check If a Float Is Integer.html
  • 13.1 receipt printing program.zip
  • 13. PROJECT Create a Receipt Printing Program.mp4
    12:06
  • 14. Simple Data Types.html
  • 1. What is a List.mp4
    06:19
  • 2.1 s6 working with lists.zip
  • 2. Working with Lists.mp4
    04:01
  • 3.1 s6 making numerical lists.zip
  • 3. Making Numerical Lists.mp4
    01:52
  • 4. Printing Lists.mp4
    02:22
  • 5.1 s6-exercise6.zip
  • 5. Exercise 6 Lists.html
  • 6. Lists.html
  • 7. Tuples.mp4
    04:11
  • 8. Tuple Assignment, Packing, and Unpacking.mp4
    04:29
  • 9. Working with Dictionaries.mp4
    04:45
  • 10. Sets.mp4
    04:45
  • 11.1 s6-exercise7.zip
  • 11. Exercise 7 Dictionaries.html
  • 12. Summary.html
  • 13. Dictionaries.html
  • 1.1 s7 if statements.zip
  • 1. If Statements.mp4
    03:46
  • 2. Odd or Even.html
  • 3. EXAMPLES of Using the if Statement in an Application.mp4
    10:45
  • 4. Pizza Street 99.html
  • 5.1 s7 break-continue.zip
  • 5. Break & Continue.mp4
    02:29
  • 6.1 s7 for loops.zip
  • 6. for Loops.mp4
    02:14
  • 7. EXAMPLES of Using the for Statement.mp4
    04:15
  • 8.1 s7 whileloops1.zip
  • 8.2 s7 whileloops2.zip
  • 8. while Loops.mp4
    03:51
  • 9.1 s7 exercise8.zip
  • 9. Exercise 8 for Loops.html
  • 10.1 s7 exercise9.zip
  • 10. Exercise 9 if statement.html
  • 11.1 s7 guessing game.zip
  • 11. PROJECT Guessing Game.mp4
    06:42
  • 12. Summary.html
  • 13. Statements and Loops.html
  • 1.1 s8 using if statements with lists.zip
  • 1. Using if Statements with Lists.mp4
    01:48
  • 2.1 s8 using for loops with lists.zip
  • 2. Using for Loops with Lists.mp4
    02:06
  • 3.1 s8 using a while loop with lists and dictionaries.zip
  • 3. Using a while Loop with Lists and Dictionaries.mp4
    03:14
  • 4.1 s8 creating stacks using lists.zip
  • 4. Creating Stacks Using Lists.mp4
    04:39
  • 5.1 s8 searching and sorting lists 1.zip
  • 5.2 s8 searching and sorting lists 2.zip
  • 5. Searching and Sorting Lists.mp4
    04:55
  • 6.1 s8 looping through a dictionary.zip
  • 6. Looping Through a Dictionary.mp4
    02:22
  • 7.1 s8 replacing the switch statement with a dictionary.zip
  • 7. Replacing the switch statement with a dictionary.mp4
    03:44
  • 8. Working with the Counter Object.mp4
    02:29
  • 9. Advanced Methods of Lists & Dictionaries.html
  • 1. What are Functions.mp4
    02:14
  • 2.1 Built-In Functions.pdf
  • 2.2 s9 build-in functions.zip
  • 2. Built-In Functions.mp4
    02:09
  • 3. List of Python Built-In Functions.html
  • 4.1 s9 defining your own function.zip
  • 4. Defining your Own Function.mp4
    02:57
  • 5. More Built-In Functions.mp4
    09:37
  • 6.1 s9-exercise addingevens.zip
  • 6. Exercise Adding Evens.html
  • 7.1 s9 global and local scopes.zip
  • 7. Global and Local Scopes.mp4
    04:55
  • 8. Summary.html
  • 9.1 s9 exercise10.zip
  • 9. Exercise 10 Functions.html
  • 10. PROJECT Improved Guessing Game (version 2) - PART 1.mp4
    07:41
  • 11. PROJECT Improved Guessing Game (version 2) - PART 2.mp4
    04:46
  • 12.1 guessing game final.zip
  • 12. PROJECT Improved Guessing Game (version 2) - PART 3.mp4
    09:30
  • 13. Functions.html
  • 1. Dealing with errors.mp4
    03:22
  • 2. Common Syntax Problems.mp4
    08:59
  • 3. Become a Bug Bounty Hunter.mp4
    09:37
  • 4. Fix the Code.html
  • 5.1 s13 basicexceptionhandling.zip
  • 5. Basic Exception Handling.mp4
    06:06
  • 6.1 s13 handlingmultipleexceptions.zip
  • 6. Handling Multiple Exceptions.mp4
    07:26
  • 7.1 s13 raisingexceptions.zip
  • 7. Raising Exceptions.mp4
    02:36
  • 8. How to Debug in IDLE.mp4
    03:39
  • 1.1 Rock, paper, scissors.html
  • 1. Overview.mp4
    01:49
  • 2. Input and Loops.mp4
    07:46
  • 3. How to Determine a Winner.mp4
    13:24
  • 1. What Is Object-Oriented Programming (OOP).mp4
    03:16
  • 2. Classes in Python.mp4
    02:50
  • 3.1 s10 attributes.zip
  • 3. Class and Instance Attributes.mp4
    05:24
  • 4. Adding Attributes to a Python Class.mp4
    07:17
  • 5.1 s10 methods.zip
  • 5.2 s10 methods2.zip
  • 5. Adding Methods to a Python Class.mp4
    06:22
  • 6. Introduction to OOP Inheritance.mp4
    03:52
  • 7.1 s10 inheritance.zip
  • 7. Inheritance Example.mp4
    10:32
  • 1. Scripts, Modules, Packages, and Libraries.mp4
    04:18
  • 2. Writing a Module.mp4
    02:55
  • 3. The Module Search Path.mp4
    04:44
  • 4. The import Statement.mp4
    06:35
  • 5. The dir() Function.mp4
    04:05
  • 6. Executing a Module.mp4
    05:52
  • 7. Reloading a Module.mp4
    03:20
  • 8. How to Install a Package in Python using PIP.mp4
    03:44
  • 9. Python Packages.mp4
    04:42
  • 10.1 s11 turtle.zip
  • 10. Introduction to Turtle Graphics.mp4
    06:09
  • 11. Summary.html
  • 12.1 md.zip
  • 12.2 mdanswers.zip
  • 12. Exercise 11 Modules.html
  • 13. Modules.html
  • 1. Pythons open, read from, and write to a file.mp4
    05:55
  • 2. Getting a Directory Listing & File Attributes.mp4
    08:06
  • 3. Making & Deleting Directories.mp4
    10:35
  • 4. Deleting, Copying, Moving, and Renaming Files.mp4
    07:38
  • 5. Summary.html
  • 6. Exercise 12 Working with Files.html
  • 7. Working with Files.html
  • 1. Overview.mp4
    01:30
  • 2. Part 1 Importing Modules & Getting the Users Score.mp4
    03:55
  • 3. Part 1 Exception Handling & Updating the Users Score.mp4
    07:33
  • 4. Part 1 Generating the Questions & the Mathematical Symbols.mp4
    06:16
  • 5. Part 1 Generating a Mathematical Expression & Evaluating the Result.mp4
    06:03
  • 6.1 math-game.zip
  • 6.2 mathfunctions.zip
  • 6. Part 2 Writing the Main Program.mp4
    06:05
  • 7. Thank you !.mp4
    01:04
  • 1. Test your skills on Python.html
  • 2. Amazing discount for my other courses!.html
  • Description


    A Python 3 Practical Programming Course for Absolute Beginners - Learn how to Code in Python 3.9 (2021 Edition)

    What You'll Learn?


    • Go from a total beginner to a confident Python programmer
    • Understand and implement basic Python Code
    • Automate Tasks on the computer by writing simple Python Programs
    • Build Python Projects
    • Be able to program in Python professionally

    Who is this for?


  • Complete Programming Beginners who have never programmed before
  • People with willingness for learning
  • Students transitioning over from another programming language to Python
  • Office workers, students, and administrators would want to improve their productivity
  • This course is a language tutorial, not a reference, and not an application course
  • What You Need to Know?


  • A computer with an internet connection
  • No programming experience is required
  • This course was recorded with Python v3.9 but it's also compatible with Python v2
  • More details


    Description

    COMPLETELY REDONE ON JANUARY 2021, WITH OVER 75 BRAND NEW VIDEOS! (with Python 3.9)


    Start coding in Python immediately!   

    If you are a beginner in Programming, then this course will help you learn Python Programming fast. Python is an incredibly efficient language: your programs will do more in fewer lines of code than many other languages would require. It is also used in scientific fields for academic research and applied work.   

    Why you should take this Python course:

    • It’s the Perfect Length: The course is just 9 hours long, so you’ll actually be able to finish it and get your certificate.

    • It’s Practical: You actually use Python to create things. You can see you’ve understood because you make Python projects that work!

    My goal was to create a Course for people of any age who have never programmed in Python before or have never programmed at all, so you can build programs that work.   

    The course is full of examples and projects that are carefully chosen to demonstrate each concept so that you can gain a deeper understand of the language. It is designed to serve as a single, all-inclusive learning resource for all Python newcomers, whether they will be using Python 2.X, Python 3.X, or both   

    We cover a wide variety of topics, including:

    • Command Line Basics

    • Installing Python

    • Running Python Code

    • Strings

    • Lists

    • Dictionaries

    • Tuples

    • Sets

    • Number Data Types

    • Print Formatting

    • Functions

    • Scope

    • Built-in Functions

    • Debugging and Error Handling

    • Modules

    • Object Oriented Programming

    • Inheritance

    • File I/O

    • Advanced Methods

    • and much more!

    Are you looking to learn practical Python Programming you can put to use instantly? If so, then this is the course for you. It’s entirely project based and it’s full of examples which are fully explained and easy to understand. It has been recorder in full HD 1080p. If you get stacked don’t worry. I have fast and fully support through the discussion board.

    Try out the course for a full 30 days, with a Udemy-approved Zero Risk, 30 Day 100% Money Back Guarantee! You have absolutely nothing to lose and everything to gain!

    At the end of this Python class you will be given a Certificate of Completion.
    Python is a great language to learn, so enroll in this course and let’s get started!

    Who this course is for:

    • Complete Programming Beginners who have never programmed before
    • People with willingness for learning
    • Students transitioning over from another programming language to Python
    • Office workers, students, and administrators would want to improve their productivity
    • This course is a language tutorial, not a reference, and not an application course

    User Reviews
    Rating
    0
    0
    0
    0
    0
    average 0
    Total votes0
    Focused display
    Category
    Andreas Exadaktylos
    Andreas Exadaktylos
    Instructor's Courses
    Hi, I am Andreas and I'm a Best Selling Teacher. I really love learning and teaching whenever I can.I have a Master's Degree in Computer Science and a Degree in Electronic Engineering.  I have over 20 years of experience in teaching as an instructor, especially in Microsoft Excel. I have my own computer learning school, called Futurekids, from 2001 to now. I am the founder of Mellon Training, an online video tutorials learning school.  I always wanted to create my own business. Being your own boss is an incredibly liberating experience but difficult as well.  I have a passion for software products that make people's lives easier. I teach Python Programming,  Microsoft Excel and all Microsoft software products for over 20 years. I am a professional Forex Trader for over 5 years. I love to create websites and optimize them with Search Engine Optimization techniques. I created my online e-shop, called Bite me not jewels, with my wife.  I live in Rodos, a beautiful Greek island. When I am not working, I love being with my family, my two kids and my lovely dog. Travel, forex trading, and reading books are my favorite hobbies.
    Students take courses primarily to improve job-related skills.Some courses generate credit toward technical certification. Udemy has made a special effort to attract corporate trainers seeking to create coursework for employees of their company.
    • language english
    • Training sessions 100
    • duration 8:06:39
    • English subtitles has
    • Release Date 2023/10/08