Python climbs the Languages Ladder

Study

For the first time in the 20-year history of TIOBE Index, C and Java don’t make up the top 2 positions, with Java slipping to third and Python taking its place in the TIOBE Index for November 2020.

Top 10 Programming Languages

1. C

#include <stdio.h>

int main() {
    printf("I am 1st");
    return 0;
}

2. Python

print("I am 2nd")

3. Java

public class HelloWorld{

     public static void main(String []args){
        System.out.println("I am 3rd");
     }
}

4. C++

#include <iostream>


int main()
{
    printf("I am 4th");
    return 0;
}

5. C#

using System.IO;
using System;

class Program
{
    static void Main()
    {
        Console.WriteLine("I am 5th");
    }
}

6. Visual Basic

Module VBModule
    Sub Main()
        Console.WriteLine("I am 6th")
    End Sub
End Module

7. JavaScript

<!DOCTYPE html>
<html>
<body>
<p id="seventh"></p>

<script>
document.getElementById("seventh").innerHTML = "I am 7th"
</script>

</body>
</html>

8. PHP

<?php print("I am 8th"); ?>

9. R

print("I am 9th")

10. SQL

BEGIN TRANSACTION;
CREATE TABLE FORPRINT(Id integer PRIMARY KEY);
COMMIT;

SELECT 'I am 1'||count(*)||'th' FROM FORPRINT where 1=2;