Python Installation on Fedora Linux and Windows 7
Install Python 3.2 on Fedora Linux
Remember that you must be Super User to install Python the way we discuss here.
Download Python 3.2:
wget http://www.python.org/ftp/python/3.2/Python-3.2.tar.bz2
Extract Files to a directory Python-3.2
tar -xjf Python-3.2.tar.bz2 cd Python-3.2
Change to that directory:
cd Python-3.2
Run ./configure:

Run make:

Run make install:

And that's it. After this installation process, for all your Python Scripts, you have to add (if required) '#!/opt/python3/bin/python3' as your path.
You may test which version of Python is installed by running the following command :
python -V
Also remember that with most of the Linux distributions, while installing, a standard installation process also installs Python by default. To run Python, just type python and hit enter and it will take you to the python prompt.
Install Python 3.2 on Windows 7:
Download .msi file of Python from http://www.python.org/getit/releases/3.2/. Once downloaded, double-click the file to install Python 3.2 on Windows 7.
Start Installation:

Select Installation folder:

Wait now till the installation process is finished.

Click Finish button at this stage and that's it. You may open Python command line from Start Menu and you may run python commands as shown bellow:

For both Windows and Linux, to leave the Python prompt, issue 'quit()'.
Previous: Python 2 vs 3
Next: Python IDLE
Test your Python skills with w3resource's quiz
Python: Tips of the Day
Python: Time library
Time library provides lots of time related functions and methods and is good to know whether you're developing a website or apps and games or working with data science or trading financial markets. Time is essential in most development pursuits and Python's standard time library comes very handy for that.
Let's check out a few simple examples:
moment=time.strftime("%Y-%b-%d__%H_%M_%S",time.localtime())
import time time_now=time.strftime("%H:%M:%S",time.localtime()) print(time_now) date_now=time.strftime("%Y-%b-%d",time.localtime()) print(date_now)
Output:
11:36:34 2020-Nov-30
- New Content published on w3resource:
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- React - JavaScript Library
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework