-
### Title of article
Write a Python program to print Fibonacci series.
### Additional information
```
Input : 10
Output : 0 1 1 2 3 5 8 13 21 34
```
### Code of Conduct
- [X] I have read and …
-
### Title of article
Write a Python program to print fibonacci series without using recursion.
### Additional information
```
Input : 10
Output : 0 1 1 2 3 5 8 13 21 34
```
### Code of Conduct…
-
### Title of article
Write a Python programme to print the given pattern.
### Additional information
For `n = 5`
```
* * * * *
* * * *
* * *
* *
*
```
### Code of Conduc…
-
### Title of article
Write a Python programme to print the given pattern.
### Additional information
For `n = 3`
```
*
* *
* * *
* *
*
```
For `n = 5`
```
*
* *
* * *
…
-
### Title of article
Write a Java program to print sum of digits.
### Additional information
```
Input: 2332
Output: 10
```
```
Input: 23
Output: 5
```
### Code of Conduct
- [X] I have…
-
### Description
Python info is not being shown when we select the Python tab.
### Screenshots
![Screenshot_20220223_163147](https://user-images.githubusercontent.com/42775082/155307565-a80625dc-738…
-
### Title of article
Write a Python program to check prime number.
### Additional information
```
Input : 8
Output : Not prime number
```
```
Input : 7
Output : Prime number
```
### Cod…
-
### Title of article
Write a Java programme to find sum of cubes of first n natural numbers.
### Additional information
```
1^3 + 2^3 + 3^3 + ... + n^3
```
### Code of Conduct
- [X] I have read…
-
### Title of article
Write a Python programme to print first n even numbers.
### Additional information
```
Input: 5
Output: 0 2 4 6 8
```
### Code of Conduct
- [X] I have read and agree to th…
-
### Title of article
Write a c program to convert number to strings.
### Additional information
```
Input: 51
Output: five one
```
```
Input: 201
Output: two zero one
```
### Code of Co…