Day Name
This Program name is Day Name. Write a Python program to Day Name, it has two test cases
The below link contains Day Name question, explanation and test cases
https://drive.google.com/file/d/1S-OaOLA16zDWLo8MVkcc22Q30kLxaz3H/view?usp=sharing
We need exact output when the code was run
Given an integer
N as input, write a program to print a number diamond of 2*N -1 rows as shown below.Note: There is a space after each number.
The first line of input is an integer
N.
In the given example, the number of rows in the diamond is
5.So, the output should be
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
1 2 3 4
1 2 3
1 2
14,So the output should be
1
1 2
1 2 3
1 2 3 4
1 2 3
1 2
1write a program that keep taking input(character) until the user enter a dot'.'.in python loop
write a program that keeps taking input(integers)until the user enters-1(use while or do-while loop) in python loop
write a program that displays the following number sequence. make sure there is no extra comma.(2,2.25,2.50,2.75,..,4) in python loop
write a program that disply the following number sequence.(1,3,5,7,...73) in python loop
write a program that displays the following character sequence.(a,b,c,...,z) in python loop
Indivisible Numbers
You are given a positive integer
The first line of input is an integer
The output should be an integer representing the number of positive integers satisfying the above condition.
In the given example,
11 is not divisible by any number from 2 to 10. It is divisible by only 1, 11.So, the output should be
2.
3-digit Armstrong Number
Write a Python program of 3-digit Armstrong Number. It consists of two test cases
The below link contains 3-digit Armstrong Number - Question, explanation and test cases
https://drive.google.com/file/d/1TDj5IcRLuj8MFif4X8tqX9KBoZrr4nO-/view?usp=sharing
We need all test caese can be come while code was running