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
- Host: GitHub
- URL: https://github.com/hpamanji/python-exercises
- Owner: hpamanji
- Created: 2022-09-26T18:46:11.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-26T19:28:33.000Z (over 2 years ago)
- Last Synced: 2025-02-26T12:36:51.782Z (3 months ago)
- Language: Python
- Size: 18.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:**