In this article we are simply presenting the code blocks required in different programming laguages to print 'pythoncircle.com
' on terminal. This shows the amount of code you need to write to print a simple string.
#include <stdio.h>
int main()
{
printf("pythoncircle.com");
return 0;
}
#include <iostream> using namespace std; int main() { cout << "pythoncircle.com"; return 0; }
<?php echo "pythoncircle.com"; ?>
using System; namespace HelloWorld { class Hello { static void Main() { Console.WriteLine("pythoncircle.com"); Console.ReadKey(); } } }
public class HelloWorld { public static void main(String[] args) { System.out.println("pythoncircle.com"); } }
print("pythoncircle.com")
That is all you need in python to print a statement. This shows the simplicity of Python.