1#Hello world in Java:
2public class Main {
3 public static void main(String[] args) {
4 System.out.println("hello world");
5 }
6}
7
8#Hello world in Python:
9print('hello world')
10
11#See?
1// make a friend using python
2//make sue you have installed pyttsx3 module
3// to install module open cmd and write pip install pyttsx3
4
5import pyttsx3
6engine = pyttsx3.init()
7engine.say("")
8engine.runAndWai
1- Make a calculator
2- Automating stuff Eg: Parsing thorugh a directory and find a particular file.
3- Making your own website using flask or django etc
1#Hello world in C++
2
3#include <iostream>
4using namespace std;
5
6int main() {
7 cout << "Hello World!";
8 return 0;
9}
10
11#Hello world in python
12
13print('Hello World!')