Friday, December 13, 2019

Write a Python Program Code to Print Floyd's Triangle

Write a Python Program Code to Print Floyd's Triangle

Answer:

# Python Program - Print Floyd Triangle

print("Enter 'x' for exit.")
ran = input("Upto how many line ? ")
if ran == 'x':
    exit();
else:
    rang = int(ran)
    k = 1
    for i in range(1, rang+1):
        for j in range(1, i+1):
            print(k, end=" ")
            k = k + 1
        print()

Write a Python Program Code to Display Calendar

Write a Python Program Code to Display Calendar

Answer:
# Python Program - Display Calendar

import calendar
print("------Calendar Program in Python------\n");
print("Enter 'x' for exit.");
y = input("Enter Year: ");
if y == 'x':
    exit();
else:
    m = input("Enter month: ");
    yy = int(y);
    mm = int(m);
    print("\n",calendar.month(yy,mm));

Featured posts

Ethiopian culture calendar language

Ethiopian culture, calendar, language  The Ethiopian language, specifically Amharic , uses a script called Ge'ez script . It consists of...

Popular posts