My First Article

ยท

1 min read

I'm currently working as an Automation Tester. I have started learning python in my new job and the ease of using data structures.

C to Python

C

#include <stdio.h>
int main()
{
        printf("Hello World");
        return 0;
}

C++

#include <iostream>
int main()
{
      std::cout<< "Hello World";
      return 0;
}

Python

#!/usr/bin/python
print('Hello World')