An open API service indexing awesome lists of open source software.

https://github.com/hpamanji/python-exercises

Python Programming Exercises
https://github.com/hpamanji/python-exercises

Last synced: 3 months ago
JSON representation

Python Programming Exercises

Awesome Lists containing this project

README

        

# Python-Exercises
Python Programming Exercises

### 001 Write a python program to print numbers from 1 to 100

### 002 Take a number as user input and print numbers from 1 to the given input number n.

### 003 Find numbers divisible by 5 but are not a multiple of 6

### 004 Find prime numbers between 1 to 100

### 005 Write a program to print table for the give number n.

-----
-----
2 * 1 = 2
2 * 2 = 4
2 * 10 = 20

#### *Which of the following varaible names are valid ?*
a) 1st_name
b) first.name
c) first_name
d) first-name
**Answer:**
#### *Which of the following varaible names are valid ?*
a) 1st_name
b) first.name
c) first_name
d) _first_name
**Answer:**