Film & Animatie

C1C2
21 Bekeken · 4 maanden geleden

Today we will walk you through the basics of using the terminal and command prompt with GitHub!

🔴 Subscribe to our channel to get video updates. Hit the subscribe button above: https://bit.ly/3boSYkX

--------------------------------------------------------------------------------------------

Website: https://www.missionbit.org/
Facebook: https://www.facebook.com/MissionBit/
Instagram: https://www.instagram.com/missionbit/
Twitter: https://twitter.com/missionbit

--------------------------------------------------------------------------------------------

#github #programming #coding #codingtutorial

C1C2
17 Bekeken · 4 maanden geleden

Let's learn the essential steps for using GitHub, including creating repositories, managing branches, making commits, and merging changes through pull requests.
SUBSCRIBE for more! 👉 http://bit.ly/3zlUmiS 👈

☕ Join Builder’s Console Log Community
https://www.skool.com/ai-for-your-business/about

How To Connect GitHub To Your Local Code Repository (30 min)
https://youtu.be/2WnxKCFAXAM

How to Create an Easy App for Beginners (Cursor AI, Claude, ChatGPT)
https://youtu.be/tvquJI-v8ys

GitHub · Build and ship software on a single, collaborative platform:
https://github.com/

🛠️ Let's build an app's Backend using AI - [Playlist] (2.5+ hours of content)
https://www.youtube.com/playli....st?list=PLJrzt4ameia

🖼️ Let's build an app's Frontend with AI - [Playlist] (3+ hours of content)
https://www.youtube.com/playli....st?list=PLJrzt4ameia

💬 Bumpups: Chat with this YouTube video
https://bumpups.com/ (code "CORBIN" for $10 off)

-------------------------------------------------
➤ follow other places I exist

https://www.youtube.com/@corbinwander
https://x.com/corbin_braun
https://www.tiktok.com/@corbin_braunlich
https://soundcloud.com/braunlich
-------------------------------------------------

Key Takeaways:

✩ Creating and Managing a Repository: Learn how to create a new GitHub repository, set its visibility (public or private), and initialize it with a README file. Understand how repositories act as project folders where you can store and organize files, track changes, and collaborate with others.
✩ Making Changes with Branches and Commits: Discover how to create a new branch separate from the main branch to work on changes without affecting the main codebase. Learn how to edit files, commit changes with meaningful messages, and understand the importance of tracking changes in a project.
✩ Opening and Merging Pull Requests: Understand the process of opening a pull request to propose and review changes before merging them into the main branch. Learn how to compare differences between branches, discuss changes with collaborators, and merge or delete branches once the changes are approved.


▼ Extra Links of Interest:

Grab the full source code from the tutorial – absolutely free 🏂
https://github.com/coffeefuelbump/actual-backend-app

Create and use a repository. · Start and manage a new branch. · Make changes to a file and push them to GitHub as commits. · Open and merge a pull request.
https://docs.github.com/en/get....-started/start-your-

automate everything. 👇
https://linktr.ee/_cafe_

My Setup To Record Content (amazon storefront) 📷
https://amzn.to/4d8Qkg2

Become an Early Adopter 🍻
https://www.youtube.com/channe....l/UCJFMlSxcvlZg5yZUY

My name is Corbin, creator of bumpups.com and investor behind _cafe_.

I build things for fun 🤠

C1C2
43 Bekeken · 4 maanden geleden

In this step-by-step tutorial, learn how to use Git and GitHub for source control management (SCM). We start with Git. What is it? How you can get it running on your system, and how you can start working with it? Then we look at GitHub.com, a platform for hosting and collaborating on Git repositories. By the end of this video, you'll be well on your way to using Git and GitHub. If you'd like to follow along, I've included sample files down below.

📚 RESOURCES
- Sample files to follow along: https://1drv.ms/u/s!AmxrofZZlZ....-whOIll3D3rv-iWMxqYw
- Official Git web site: https://www.git-scm.com/
- Official GitHub.com web site: https://github.com/
- Git and GitHub.com cheat sheet: https://education.github.com/g....it-cheat-sheet-educa
- Git Reference Manual: http://git-scm.com/docs
- Git Overview Book: http://git-scm.com/book/en/v2
- Sample ignore files: https://github.com/github/gitignore
- Hyper.is Terminal: https://hyper.is/

⌚ TIMESTAMPS
00:00 Introduction
00:40 What is Git?
02:11 Get Git
03:13 Configure Git
04:55 Get help
05:59 Initialize repository
07:19 Git status
07:53 Track and untrack files
09:18 Ignore files with .gitignore
11:23 Track all files / add to staging
12:07 Commit
13:27 Change files and view differences
16:00 Bypass staging and commit
16:32 Delete / remove files
17:13 Restore files
17:55 Rename files
18:56 View commit history with git log
19:52 Amend commit
20:48 View changes in commits
22:08 Reset to previous commit
22:30 Rebase git repository
23:12 Branches
27:19 Merge branches
27:57 Delete branch
28:30 Merge conflicts
32:16 Typical Git flow
32:37 Set up GitHub account
33:37 Create new cloud repository
35:09 Push local repo to GitHub
37:29 Working with files
38:25 Edit repo details
38:44 Issues
40:17 Pull requests
43:05 Actions, Projects, Wiki, Security, Insights, Settings
44:18 Releases
45:00 Fetch and pull
45:37 Wrap up

🖥️ GIT COMMANDS CHEAT SHEET
Set configuration values for your username and email
git config --global user.name YOUR NAME
git config --global user.email YOUR EMAIL

Set default branch to main
git config --global init.default branch main

Get help on a command
git help COMMAND
git COMMAND -h

Initialize a new git repository
git init

Clone a repository
git clone REPOSITORY URL

Add a file to the staging area
git add FILE

Add all file changes to the staging area
git add --all
git add -A
git add .

Check the unstaged changes
git diff

Commit the staged changes
git commit -m "MESSAGE"

Reset staging area to the last commit
git reset

Check the state of the working directory and the staging area
git status

Remove a file from the index and working directory
git rm FILENAME

Rename a file
git mv (OLD NAME) (NEW NAME)

List the commit history
git log

List all the local branches
git branch

Create a new branch
git branch BRANCH NAME

Rename the current branch
git branch -m NEW BRANCH NAME

Delete a branch
git branch -d BRANCH NAME

Switch to another branch
git switch BRANCH NAME

Merge specified branch into the current branch
git merge BRANCH NAME

Create a connection to a remote repository
git remote add (NAME) (REPOSITORY URL)

Push the committed changes to a remote directory
git push (REMOTE) (BRANCH)

Download the content from a remote repository
git pull REMOTE

📺 RELATED VIDEOS
- Playlist with all my videos on Git and GitHub: https://youtube.com/playlist?l....ist=PLlKpQrBME6xL-CU
- Python for Beginners Tutorial: https://youtu.be/b093aqAZiPU
- SQL for Beginners Tutorial: https://youtu.be/h0nxCDiD-zg

📩 NEWSLETTER
- Get the latest high-quality tutorial and tips and tricks videos emailed to your inbox each week: https://kevinstratvert.com/newsletter/

🔽 CONNECT WITH ME
- Official website: http://www.kevinstratvert.com
- LinkedIn: https://www.linkedin.com/in/kevinstratvert/
- Discord: https://bit.ly/KevinStratvertDiscord
- Twitter: https://twitter.com/kevstrat
- Facebook: https://www.facebook.com/Kevin....-Stratvert-101912218
- TikTok: https://www.tiktok.com/@kevinstratvert
- Instagram: https://www.instagram.com/kevinstratvert/

🎁 TOOLS AND DISCOUNTS
✅ 🎙️ Voicemod AI Voice Changer | 5% off | https://link.xsolla.com/KZBi89AY
✅ 🌐 Squarespace Websites | https://squarespace.syuh.net/XYaqYM
✅ 🔍 Grammarly | https://grammarly.go2cloud.org/SH3nL
✅ 🛍️ Shopify | https://shopify.pxf.io/XY9rPa
✅ 📋 Notion | https://affiliate.notion.so/rffva4tr71ax
✅ 🖼️ Figma | https://psxid.figma.com/lqjg97licpry
✅ 🤖 ElevenLabs Text-to-Speech | https://try.elevenlabs.io/taqepq60mptr

🎒 MY COURSES
- Go from Excel novice to data analysis ninja in just 2 hours: https://kevinstratvert.thinkific.com/

🙏 REQUEST VIDEOS
https://forms.gle/BDrTNUoxheEoMLGt5

🔔 SUBSCRIBE ON YOUTUBE
https://www.youtube.com/user/k....evlers?sub_confirmat

⚖ DISCLOSURE
Some links are affiliate links. Purchasing through these links gives me a small commission to support videos on this channel. The price to you is the same.

#stratvert

Donbright
3 Bekeken · 4 maanden geleden

A Python decorator is a function that takes in another function, adds some functionality to it, and then returns it. A decorator acts as a wrapper to other functions.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, you will learn how to create decorators and why you should use them along with the help of examples.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Decorators (text-based tutorial): https://www.programiz.com/pyth....on-programming/decor
Python Closures (text-based tutorial): https://www.programiz.com/pyth....on-programming/closu
Python @property decorator (text-based tutorial): https://www.programiz.com/pyth....on-programming/prope

Everything is an Object in Python: https://youtu.be/X1RN6ADsOW4?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:14 Prerequisites for Decorators
5:41 Python Decorators
10:51 Decorating Functions with Parameters
13:42 Chaining Decorators in Python

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Decorators in Python (Easy to Understand Guide) #31

#python #learnprogramming #programiz #decorators #decoratorsinpython

Donbright
12 Bekeken · 4 maanden geleden

Python has a module named datetime to work with dates and times.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

Even though date and time may seem simple and straightforward in our daily use cases, they can be challenging to implement in our code because we have to keep a record of things such as different date and time formats, different time zones and so on. Fortunately, Python provides a built in datetime module to simplify this task.

In this video, we will use the datetime module to manipulate date and time in Python with the help of examples.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python datetime module (text-based tutorial): https://www.programiz.com/pyth....on-programming/datet
Python strftime() method (text-based tutorial): https://www.programiz.com/pyth....on-programming/datet/strftime
Python strptime() method (text-based tutorial): https://www.programiz.com/pyth....on-programming/datet/strptime
Python time module (text-based tutorial): https://www.programiz.com/python-programming/time

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:24 Get Current Date
1:35 The datetime.date Class
3:36 The datetime.time Class
6:00 The datetime.datetime Class
8:18 Getting Current Date and Time
9:26 The datetime.timedelta Class
11:12 Python strftime() method
14:25 Python strptime() method

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

datetime Module (How to Work with Date & Time in Python) #30

#programiz #python #learnprogramming #pythonforbeginners #dateandtimeinpython

Donbright
12 Bekeken · 4 maanden geleden

A Generator is an elegant way to create custom iterators in Python that makes it really easy to work with iterators. 🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, you will learn how to create iterators in Python using generator functions and find out their differences compared to normal functions. You will also learn why you should use generators in your Python code.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Generators (text-based tutorial): https://www.programiz.com/pyth....on-programming/gener

Python Iterators: https://www.youtube.com/watch?v=C_rhipZonok

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:20 Why use Generators?
1:10 Python Generators
5:30 Infinite Stream of Data with Generators

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Generators (Work with Large Amount of Data) #29

#python #learnprogramming #programiz #pythongenerators

Donbright
2 Bekeken · 4 maanden geleden

Iterators are everywhere in Python. They are elegantly implemented within for loops, list and dictionary comprehensions, but are hidden in plain sight.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about iterables and iterators in Python with the help of examples. We will also create our own custom iterator and see how the for loop actually works.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Iterators (text-based tutorial): https://www.programiz.com/pyth....on-programming/itera

Python Object-Oriented Programming: https://youtu.be/pnWINBJ3-yA?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:30 Python Iterables
1:36 Python Iterators
1:55 The __next__() method
4:36 Working of for loops
7:03 Creating Custom Iterators

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Iterators and Iterables in Python (How for Loop Actually Works?) #28

#programiz #python #learnprogramming #iteratorsinpython

Donbright
21 Bekeken · 4 maanden geleden

A folder or a directory is a location on a computer to store and organize multiple files and sub-directories. Python has a module named os that makes it really easy to work with directory and file management tasks.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn to use the os module to perform various directory operations like creating, renaming, and removing directories with the help of examples.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Directory and Files Management (text-based tutorial): https://www.programiz.com/pyth....on-programming/direc

Python Object-Oriented Programming: https://youtu.be/pnWINBJ3-yA?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:24 Getting Current Directory
1:10 Changing Directory
3:22 Listing all Directories and Files
4:30 Making a New Directory
5:18 Renaming a Directory or a File
6:11 Removing Directory or File

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com

-------------------------------------------------

Python os Module (Work with Directories) #27

#programiz #python #programming #pythonmodules

Donbright
13 Bekeken · 4 maanden geleden

Files are named locations on our storage device for recording data. Python provides numerous built-in functions to work with these files.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will see how we can perform various file operations such as reading and writing into files with the help of examples.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python File Handling (text-based tutorial): https://www.programiz.com/pyth....on-programming/file-

Python Object-Oriented Programming: https://youtu.be/pnWINBJ3-yA?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:21 File Operations
0:36 Opening a File
2:23 Reading files in Python
4:29 Exception Handling with Files
6:00 Writing to files in Python
8:11 Appending to files in Python
9:22 Python readlines() and writelines()

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

How to Work with Files in Python? (Add Contents to File + Read Text from Files ) #26

#programiz #python #learnprogramming #filehandling

Donbright
10 Bekeken · 4 maanden geleden

In Python, errors that occur during the runtime of a program—even if the code is syntactically correct—are called exceptions.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about exceptions in detail and then we will see how we can handle them in Python using the try...except statement. In Python, errors that occur during the runtime of a program—even if the code is syntactically correct—are called exceptions. For example, we get a ZeroDivisionError if we try to divide a number by zero in Python.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Exceptions (text-based tutorial): https://www.programiz.com/pyth....on-programming/excep
Python Exception Handling (text-based tutorial): https://www.programiz.com/pyth....on-programming/excep
Python Custom Exceptions (text-based tutorial): https://www.programiz.com/pyth....on-programming/user-

Python Object-Oriented Programming: https://youtu.be/pnWINBJ3-yA?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:39 Understanding Exceptions
1:52 Handling Exceptions with try...except
2:35 Example of Exception Handling
5:02 Handling Specific Exceptions
8:01 Python try...finally

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Exception Handling (Use Try..Except to Catch Errors!) #25

#python #learnprogramming #programiz

Donbright
17 Bekeken · 4 maanden geleden

A package is a directory containing multiple modules and other sub-packages. 🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about Python packages with the help of examples. Then, we will learn about pip, the standard package manager of Python.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Packages (text-based tutorial): https://www.programiz.com/pyth....on-programming/packa
Python pip (text-based tutorial): https://www.programiz.com/python-programming/pip

Python Object-Oriented Programming: https://youtu.be/pnWINBJ3-yA?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:21 Python packages
1:46 Example of Python package
7:24 Python Package Manager (pip)
9:12 Installing a specific version of the package
9:38 List installed packages with pip

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Packages & pip (Add External Libraries to Your Code Easily) #24

#programiz #python #pythonpackages #learnprogramming

Donbright
15 Bekeken · 4 maanden geleden

A module is a file containing Python code that we can use in our program. 🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will understand why modules are used and learn how to import them into our program. We will then learn to create custom modules with the help of examples.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Modules (text-based tutorial): https://www.programiz.com/pyth....on-programming/modul

Python Object-Oriented Programming: https://youtu.be/pnWINBJ3-yA?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:19 Python modules
2:07 Renaming modules
3:00 Python from...import statement
4:54 The dir() function
6:24 Custom modules

Download VS Code: https://code.visualstudio.com/download

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Use Python Modules (to Write Clean Code) #23

#python #learnprogramming #programiz #pythonmodules

Donbright
2 Bekeken · 4 maanden geleden

Inheritance is a powerful feature of object-oriented programming which allows us to derive multiple child classes from a single parent class.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python.

In this video, you will learn about inheritance in Python with the help of examples. We will also cover the concepts of method overriding and the super function. Inheritance allows us to derive multiple child classes from a single parent class. In doing so, the child classes inherit all methods and attributes of the parent class.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Inheritance (text-based tutorial): https://www.programiz.com/pyth....on-programming/inher

Python Object-Oriented Programming: https://youtu.be/pnWINBJ3-yA?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
1:25 Inheritance in Python
5:25 Example of Inheritance
10:43 Method Overriding and super

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Inheritance (Make Your Code Modular!) #22

#python #inheritanceinpython #programiz #learnprogramming

Donbright
2 Bekeken · 4 maanden geleden

Python is an object-oriented programming language which means that it supports user-defined classes and objects.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, you will build a solid knowledge of Python objects by learning to check the type of objects, listing their attributes & methods, and understanding what actually goes under the hood. What you might not know is that every pre-existing thing available in Python is already an object, whether it is strings, numbers, functions, or even classes.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Object-Oriented Programming: https://youtu.be/pnWINBJ3-yA?l....ist=PL98qAXLA6afscIX

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:41 The type() function
2:00 The dir() function
4:31 The id() function
6:08 How variables actually work

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

In Python, Everything is an Object (even Variables and Functions) #21savage

#python #learnprogramming #programiz #python-object #learn-oop #object-orieted-programming

Donbright
21 Bekeken · 4 maanden geleden

Step by step video tutorials to learn Python for absolute beginners!

Object-oriented Programming is a programming paradigm based on the concept of creating classes and objects to solve a problem. In this video, we will learn about the fundamental concept of Object-Oriented Programming and how we can implement it in Python with the help of examples.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Object Oriented Programming (text-based tutorial): https://www.programiz.com/pyth....on-programming/objec

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:21 Object-Oriented Programming
2:24 Python Classes and Objects
8:38 The __init__() Method
13:20 Example: Add Two Complex Numbers
16:55 Why Object-Oriented Programming?
17:36 Programming Task

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com

#python #learnprogramming #programiz #pythonoop #objectoriented

Donbright
10 Bekeken · 4 maanden geleden

In Python, the range() function returns a sequence of numbers. It is commonly used for loops to iterate over the loop a certain number of times.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn to use the range() function. We will also discuss how different parameters of the range() function can be used to generate different sequences.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python range() (text-based tutorial): https://www.programiz.com/pyth....on-programming/metho

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:23 Using range()
2:11 range() in for Loop
2:56 range() with only stop Parameter
4:16 range() with step Parameter
6:11 Programming Task
6:30 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Range Function (Generate Numbers from 1 to 1,000,000,000 Easily) #19

#python #learnprogramming #programiz #pythonrange #rangefunction

Donbright
10 Bekeken · 4 maanden geleden

Similar to a set in mathematics, a Python set is a collection of non-duplicate and immutable items in no particular order. 🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn to create, manipulate, perform various operations, and iterate over sets in Python. We will also cover numerous built-in methods that make working with sets much easier.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Set (text-based tutorial): https://www.programiz.com/python-programming/set
Python Set Methods: https://www.programiz.com/pyth....on-programming/metho

Python List and Tuple: https://youtu.be/hANUgg72TDc?l....ist=PL98qAXLA6afuh50
Python Dictionary: https://youtu.be/_4wOvc-vt4k?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:26 Creating Sets
3:56 Add Items to a Set
6:22 Remove Items from a Set
8:18 Check if an Item is in a Set
9:00 Iterating Through a Set
9:30 Python Set Operations
12:56 Programming Task
13:12 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Sets (When to use it?) #18

#python #learnprogramming #programiz #pythonsets

Donbright
2 Bekeken · 4 maanden geleden

In Python, a dictionary is a compound data type that allows us to work with key/value pairs.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In Python, a dictionary is a compound data type that allows us to work with key/value pairs. In this video, we will learn to create, manipulate, perform various operations, and iterate over dictionaries in Python. We will also cover numerous built-in methods that make working with dictionaries much easier.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Dictionary (text-based tutorial): https://www.programiz.com/pyth....on-programming/dicti
Python Dictionary Methods: https://www.programiz.com/pyth....on-programming/metho

Python List and Tuple: https://youtu.be/hANUgg72TDc?l....ist=PL98qAXLA6afuh50
Python String (Textual Data): https://youtu.be/GQywwPUrsgA?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:36 Create Dictionaries
2:04 Access Dictionary Elements
4:35 Add and Change Dictionary Elements
5:34 Remove Elements from a Dictionary
6:30 Iterating Through a Dictionary
7:36 Programming Task
7:55 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com

-------------------------------------------------

Python Dictionaries: {key: value} Pairs #17

#python #learnprogramming #programiz #pythondictionaries

Donbright
10 Bekeken · 4 maanden geleden

A string is a sequence of characters or textual data. We have already used strings many times in our programs before.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about Python strings in depth. We will learn to manipulate, perform various operations, and iterate over strings in Python. We will also cover numerous built-in methods that make working with strings much easier.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python String (text-based tutorial): https://www.programiz.com/pyth....on-programming/strin
Python String Methods: https://www.programiz.com/pyth....on-programming/metho

Python List and Tuple: https://youtu.be/hANUgg72TDc?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:34 Create a String
2:44 Access String Characters
4:08 Negative Indexing
4:43 Slicing of a String
6:02 Change and Delete String Characters
6:47 Python String Operations
8:47 Iterating through a String
10:44 Python String Methods
12:57 Programming Task
13:12 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

How to Work with 'Text'? (Python Strings)? #16

#python #learnprogramming #programiz #pythonstrings

Donbright
15 Bekeken · 4 maanden geleden

Lists and Tuples store one or more objects or values in a specific order. The objects stored in a list or tuple can be of any type including the nothing type.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about two compound data types in Python: lists and tuples. These compound data types allow us to work with multiple ordered items at once. We will also cover numerous built-in methods that make working with these data types much easier. Finally, we will also learn about the core difference between lists and tuples.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python List (text-based tutorial): https://www.programiz.com/python-programming/list
Python List Methods: https://www.programiz.com/pyth....on-programming/metho

Python Tuple (text-based tutorial): https://www.programiz.com/python-programming/tuple
Python Tuple Methods: https://www.programiz.com/pyth....on-programming/metho

Python List vs Tuple (text-based tutorial): https://www.programiz.com/python-programming/list-vs-tuples
Python for loop: https://youtu.be/yaqMSBr_NCU?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:35 Create a List
2:35 Access List Elements
4:51 Negative Indexing
6:05 Slicing of a List
8:36 Change Items of a List
10:22 Iterating through a List
12:20 List Methods
14:34 Python Tuples
16:24 Python Tuple vs List
17:44 Programming Task
18:01 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Lists & Tuples in Python (How to Use Them Effectively?) #15

#python #learnprogramming #programiz #pythonlist #pythontuples




Showing 9 out of 10