🐍
filename.py
name = "NcodeScript"
age = 5
print("Welcome to " + name)
for i in range(1, age + 1):
print("Learning Python - Day", i)
#include <stdio.h>
int main() {
int i;
for (i = 1; i <= 5; i++) {
printf("Line number: %d\n", i);
}
return 0;
}
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.