Uploaded August 2024 | Updated September 2026, 1 week ago
#python #pythontutorial #pythoncourse
This is the introductory video to my new FREE 12 Hour Python course.
There is an extended playlist with 90 videos as well where I cover even more topics.
*NEW Python 12 Hour Full Course for free* ๐: youtube.com/watch?v=ix9cRaBkVe0
*Learn Python in 1 HOUR* โฑ: youtube.com/watch?v=8KCuHHeC_M0
*My original Python 12 Hour course* ๐: youtube.com/watch?v=XKHEtdqhLK8
*Full Python playlist* ๐: youtube.com/watch?v=Sg4GMVMdOPo&list=PLZPZq0r_RZOOkUQbat8LyQii36cJf2SWT
Python Interpreter: python.org
PyCharm IDE: jetbrains.com/pycharm
00:00:00 introduction
00:00:46 Python Interpreter
00:01:28 PyCharm IDE
00:03:01 new project
00:03:26 main.py
00:03:54 print()
โญ Projects we cover in this series โญ
#1 simple arithmetic calculator ๐งฎ
#2 weight conversion ๐๏ธ
#3 temperature conversion ๐ก๏ธ
#4 email slicer program ๐ง
#5 compound interest calculator ๐ต
#6 countdown timer โ
#7 shopping cart program ๐
#8 quiz game ๐ฏ
#9 concession stand program ๐ฟ
#10 number guessing game ๐ข
#11 rock, paper, scissors game ๐ฟ
#12 dice roller program โ
#13 encryption program ๐
#14 banking program ๐ฐ
#15 slot machine ๐ฐ
#16 hangman game ๐บ
#17 alarm clock โฐ
#18 digital clock ๐
#19 stopwatch โฑ
#20 weather app โ๏ธ
#python #pythontutorial #pythoncourse
This is the introductory video to my new FREE 12 Hour Python course.
There is an extended playlist with 90 videos as well where I cover even more topics.
*NEW Python 12 Hour Full Course for free* ๐: youtube.com/watch?v=ix9cRaBkVe0
*Learn Python in 1 HOUR* โฑ: youtube.com/watch?v=8KCuHHeC_M0
*My original Python 12 Hour course* ๐: youtube.com/watch?v=XKHEtdqhLK8
*Full Python playlist* ๐: youtube.com/watch?v=Sg4GMVMdOPo&list=PLZPZq0r_RZOOkUQbat8LyQii36cJf2SWT
Python Interpreter: python.org
PyCharm IDE: jetbrains.com/pycharm
00:00:00 introduction
00:00:46 Python Interpreter
00:01:28 PyCharm IDE
00:03:01 new project
00:03:26 main.py
00:03:54 print()
โญ Projects we cover in this series โญ
#1 simple arithmetic calculator ๐งฎ
#2 weight conversion ๐๏ธ
#3 temperature conversion ๐ก๏ธ
#4 email slicer program ๐ง
#5 compound interest calculator ๐ต
#6 countdown timer โ
#7 shopping cart program ๐
#8 quiz game ๐ฏ
#9 concession stand program ๐ฟ
#10 number guessing game ๐ข
#11 rock, paper, scissors game ๐ฟ
#12 dice roller program โ
#13 encryption program ๐
#14 banking program ๐ฐ
#15 slot machine ๐ฐ
#16 hangman game ๐บ
#17 alarm clock โฐ
#18 digital clock ๐
#19 stopwatch โฑ
#20 weather app โ๏ธ

![Learn Java threading in 10 minutes! ๐งต
#java #javatutorial #javacourse
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// Threading = Allows a program to run multiple tasks simultaneously
// Helps improve performance with time-consuming operations
// (File I/O, network communications, or any background tasks)
// How to create a Thread
// Option 1. Extend the Thread class (simpler)
// Option 2. Implement the Runnable interface (better)
Scanner scanner = new Scanner(System.in);
MyRunnable myRunnable = new MyRunnable();
Thread thread = new Thread(myRunnable);
thread.setDaemon(true); // This thread will end when Main thread finishes
thread.start();
System.out.println(You have 10 seconds to enter your name);
System.out.print(Enter your name: );
String name = scanner.nextLine();
System.out.println(Hello + name);
scanner.close();
}
} Learn Java threading in 10 minutes! ๐งต](https://i.ytimg.com/vi/SztE5W41on4/mqdefault.jpg)
![Java variables are easy! โ
#java #javatutorial #javacourse
public class Main {
public static void main(String[] args) {
// โ variable = A reusable container for a value.
// A variable behaves as if it was the value it contains.
// ๐ฅ Primitive = simple value stored directly in memory (stack)
// ๐ฆ Reference = memory address (stack) that points to the (heap)
// ๐ฅ Primitive vs ๐ฆ Reference
//
// int string
// double array
// char object
// boolean
int age = 21;
int year = 2025;
int quantity = 1;
double price = 19.99;
double gpa = 3.5;
double temperature = -12.5;
char grade = A;
char symbol = !;
char currency = $;
boolean isStudent = true;
boolean forSale = false;
boolean isOnline = true;
String name = Bro Code;
String food = pizza;
String email = fake123@gmail.com;
String car = Mustang;
String color = red;
System.out.println(Your choice is a + color + + year + + car);
System.out.println(The price is: + currency + price);
if(forSale){
System.out.println(There is a + car + for sale);
}
else{
System.out.println(The + car + is not for sale);
}
}
} Java variables are easy! โ](https://i.ytimg.com/vi/TGVLmr194DI/mqdefault.jpg)
![MongoDB logical operators explained
#MongoDB #course #tutorial
db.students.find({$and: [{fullTime:true}, {age:{$lte:22}}]})
db.students.find({$or: [{fullTime:true}, {age:{$lte:22}}]})
db.students.find({$nor: [{fullTime:true}, {age:{$lte:22}}]})
db.students.find({age:{$not:{$gte:30}}}) MongoDB logical operators explained](https://i.ytimg.com/vi/Tnjtj8cCJPY/mqdefault.jpg)






