First, we need to install Apache2, Before that Update Ubuntu with below command.
sudo apt-get update
Install Apache
sudo apt-get install apache2
Now activate mod_rewrite using below command
sudo apt-get update
Install Apache
sudo apt-get install apache2
Now activate mod_rewrite using below command
error: unknown filesystem.
Entering rescue mode...
grub rescue
Switch on the System, wait untill you get the Grub Rescue Screen.|
File Modes in Python
|
|
|
Mode
|
Description
|
|
'r' |
Open a file for reading. (by default) |
|
'w' |
Open a file for writing. Creates a new file if it does not
exist or deleates the file if it exists. |
|
'x' |
Open a file for exclusive creation. If the file already exists,
the operation fails. |
|
'a' |
Open for appending at the end of the file without replacing it.
Creates a new file if it does not exist. |
|
't' |
Open in text mode. (by default) |
|
'b'
|
Open in binary mode. |
|
'+'
|
Open a file for updating (reading and writing) |