create folder php
// Create folder if not exist
$folderName = 'images/gallery';
$config['upload_path'] = $folderName;
if(!is_dir($folderName))
{
mkdir($folderName, 0777);
}
create folder php
// Create folder if not exist
$folderName = 'images/gallery';
$config['upload_path'] = $folderName;
if(!is_dir($folderName))
{
mkdir($folderName, 0777);
}
php mkdir
// Create a directory with the permission level (optional)
<?php
mkdir("/path/to/my/dir", 0700);
?>
php mkdir recursive
<?php
// Create a directory recursively (make sure to sanitize if taken from input as always!)
mkdir("/path/to/my/dir", 0777, true);
linux create directory with permissions
mkdir –m777 DirM
mkdir
sudo mkdir /usr/local/sbin
what that dose is make a new file at /usr/local/sbin
mkdir
sudo mkdir /usr/local/sbin
what that dose is make a new file at /usr/local/sbin
name = "Page Financials" ; year_of_est ="2014"
print("Company name: %s. \nYear of establishment: %s." %(name, year_of_est))
import pandas as ap
data = ap.DataFrame({"a":a, "b":b})
print(data)
string.ascii_lowercase #print_all_lower_case_of_alphabet
ascii_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
digits = '0123456789'
hexdigits = '0123456789abcdefABCDEF'
octdigits = '01234567'
printable = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ \t\n\r\x0b\x0c'
punctuation = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
whitespace = ' \t\n\r\x0b\x0c'
pip install ...
min_length = 2
name = input('Please enter your name:')
while not(len(name) >= min_length and name.isprintable() and name.isalpha()):
name = input('Please enter your name:')
print('Hello, {0}'.format(name))
from functools import reduce
import operator
pd.DataFrame() ... to create a data frame
time.perf_counter() ... Time counter
import ta ...Technical indicator
## PANDAS_TA CONTAINING 133 INDICATORS
import pandas as pd
import pandas_ta as ta
df = pd.DataFrame()
df.ta.indicators()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us