Uploaded July 2024 | Updated September 2026, 2 weeks ago
This is an introductory video to help you get started working with the Python PyQT5 Graphical User Interface (GUI)
00:00:00 GUI windows ๐ฅ๏ธ
00:09:08 labels ๐ท๏ธ
00:18:04 images ๐ท
00:24:09 layout managers ๐งฒ
00:30:48 push buttons ๐๏ธ
00:37:53 checkboxes โ
00:44:23 radio buttons ๐
00:53:36 line edits ๐ฌ
00:59:36 CSS properties ๐จ
#pythontutorial #python #pythonprogramming
This is an introductory video to help you get started working with the Python PyQT5 Graphical User Interface (GUI)
00:00:00 GUI windows ๐ฅ๏ธ
00:09:08 labels ๐ท๏ธ
00:18:04 images ๐ท
00:24:09 layout managers ๐งฒ
00:30:48 push buttons ๐๏ธ
00:37:53 checkboxes โ
00:44:23 radio buttons ๐
00:53:36 line edits ๐ฌ
00:59:36 CSS properties ๐จ
#pythontutorial #python #pythonprogramming
![Learn Java arrays in 9 minutes! ๐
#java #javatutorial #javacourse
import java.util.Arrays;
public class Main {
public static void main(String[] args){
// array = a collection of values of the same data type
// * think of it as a variable that can store more than 1 value *
String[] fruits = {apple, orange, banana, coconut};
//fruits[0] = pineapple;
//int numOfFruits = fruits.length;
//Arrays.sort(fruits);
//Arrays.fill(fruits, pineapple);
for(String fruit : fruits){
System.out.println(fruit);
}
}
} Learn Java arrays in 9 minutes! ๐](https://i.ytimg.com/vi/9dr2mHYYoug/mqdefault.jpg)








![Lets code a WEIGHT CONVERTER in Java! ๐๏ธ
#java #javatutorial #javacourse
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// WEIGHT CONVERSION PROGRAM
Scanner scanner = new Scanner(System.in);
double weight;
double newWeight;
int choice;
System.out.println(Weight Conversion Program);
System.out.println(1: Convert lbs to kgs);
System.out.println(2: Convert kgs to lbs);
System.out.print(Choose an option: );
choice = scanner.nextInt();
if(choice 1){
System.out.print(Enter the weight in lbs: );
weight = scanner.nextDouble();
newWeight = weight * 0.453592;
System.out.printf(The new weight in kgs is: %.2f, newWeight);
}
else if(choice 2){
System.out.print(Enter the weight in kgs: );
weight = scanner.nextDouble();
newWeight = weight * 2.20462;
System.out.printf(The new weight in lbs is: %.2f, newWeight);
}
else{
System.out.println(That was not a valid choice);
}
scanner.close();
}
} Lets code a WEIGHT CONVERTER in Java! ๐๏ธ](https://i.ytimg.com/vi/DFhpzaEOoxs/mqdefault.jpg)
