coderz.py

Keep Coding Keep Cheering!

Python Syntax Rules & Hello World Program

Python Syntax Rules: Here are a few things you should know beforehand: Python is case-sensitive, which means, for example, Name and name have different meanings The standard is to use English names in programming All variables should start with a lowercase letter, for example,  var = 4 Functions begin with lowercase Classes begin with a capital letter  There is no command […]

November 12, 2022 | python | No comments

Hello World program

Program code: Output: #include<iostream>: A number sign (#) at the start of a line instructs the compiler’s pre-processor. The <iostream> header defines the libraries required to accept and output data.  using namespace std: This instructs the compiler to use the standard (std) namespace, which includes C++ Standard Library features. int main(): C++, like any other […]

November 5, 2022 | C++ | No comments

Advertisement