Answers for "what can you do with python"

7

why use python

#Hello world in Java:
public class Main {
    public static void main(String[] args) {
        System.out.println("hello world");
    }
}

#Hello world in Python:
print('hello world')

#See?
Posted by: Guest on June-11-2020
6

what can you do with python

//  make a  friend using python 
//make sue  you have installed pyttsx3 module
// to install module open cmd and write pip install pyttsx3

import pyttsx3
engine = pyttsx3.init()
engine.say("")
engine.runAndWai
Posted by: Guest on November-04-2020
10

cool things to do with python

- Make a calculator
- Automating stuff Eg: Parsing thorugh a directory and find a particular file. 
- Making your own website using flask or django etc
Posted by: Guest on August-06-2020
0

why use python

#Hello world in C++

#include <iostream>
using namespace std;

int main() {
  cout << "Hello World!";
  return 0;
}

#Hello world in python

print('Hello World!')
Posted by: Guest on April-05-2021
0

why use python

Not only that, the salary is higher!!!!!!
Posted by: Guest on April-05-2021

Code answers related to "what can you do with python"

Python Answers by Framework

Browse Popular Code Answers by Language