Python
Python
Fehmi UYAR
01 What is Python? 02 What can Python
✔ Python popüler bir programlama dilidir. Guido ✔
do?
Python, web uygulamaları oluşturmak için sunucuda
Kural 2 Kural 5
Bir variable adı sayı ile başlayamaz Bir variable adı Python anahtar
sözcüklerinden hiçbiri olamaz
Python Anahtar Sözcükleri
Keyword Description Keyword Description
and A logical operator for To create a for loop
continue To continue to the next iteration of a loop in To check if a value is present in a list, tuple, etc.
elif Used in conditional statements, same as else if None Represents a null value
except Used with exceptions, what to do when an exception not A logical operator
occurs
or A logical operator
False Boolean value, result of comparison operations
pass A null statement, a statement that will do nothing
finally Used with exceptions, a block of code that will be
executed no matter if there is an exception or not raise To raise an exception
return To exit a function and return a value Boolean value, result of comparison operations
True
try To make a try...except statement To create a while loop
while
Multi Camel Case
İlk kelime hariç her kelime
büyük harfle başlar
Words
Variable
Names Pascal Case
Her kelime büyük harfle başlar. Daha
yaygın olarak ‘UpperCamelCase’ olarak da
bilinir
Snake Case
Data
Types
Text Type str
Numeric Types int, float, complex
Sequence Types list, tuple, range
Mapping Type dict
Set Types set, frozenset
Boolean Type bool
Binary Types bytes, bytearray, memoryview
None Type NoneType
ASCII TABLE
ASCII TABLE
Extended
ASCII TABLE
Python Numbers
int
Tam sayılar için veri tipi
float
Ondalıklı sayılar için veri tipi
complex
Karmaşık sayılar için veri tipi
Random Number
seed() Initialize the random number generator
getstate() Returns the current internal state of the random number generator
setstate() Restores the internal state of the random number generator
getrandbits() Returns a number representing the random bits
randrange() Returns a random number between the given range
randint() Returns a random number between the given range
choice() Returns a random element from the given sequence
choices() Returns a list with a random selection from the given sequence
shuffle() Takes a sequence and returns the sequence in a random order
sample() Returns a given sample of a sequence
random() Returns a random float number between 0 and 1
uniform() Returns a random float number between two given parameters
triangular() Returns a random float number between two given parameters, you can also set a mode parameter to
specify the midpoint between the two other parameters
Random Number
betavariate() Returns a random float number between 0 and 1 based on the Beta distribution (used in
statistics)
expovariate() Returns a random float number based on the Exponential distribution (used in statistics)
gammavariate() Returns a random float number based on the Gamma distribution (used in statistics)
gauss() Returns a random float number based on the Gaussian distribution (used in probability theories)
lognormvariate() Returns a random float number based on a log-normal distribution (used in probability theories)
normalvariate() Returns a random float number based on the normal distribution (used in probability theories)
vonmisesvariate() Returns a random float number based on the von Mises distribution (used in directional statistics)
paretovariate() Returns a random float number based on the Pareto distribution (used in probability theories)
weibullvariate() Returns a random float number based on the Weibull distribution (used in statistics)
Escape Characters
Code Result
\' Single Quote
\\ Backslash
\n New Line
\r Carriage Return
\t Tab
\b Backspace
\ooo Octal value
\xhh Hex value
STRING METHODS
Method Description Method Description
capitalize Converts the first character to upper case isascii Returns True if all characters in the string are ascii
characters
casefold Converts string into lower case
isdecimal Returns True if all characters in the string are decimals
center Returns a centered string
isdigit Returns True if all characters in the string are digits
count Returns the number of times a specified value occurs
in a string isidentifier Returns True if the string is an identifier
encode Returns an encoded version of the string islower Returns True if all characters in the string are lower case
endswith Returns true if the string ends with the specified value isnumeric Returns True if all characters in the string are numeric
expandtabs Sets the tab size of the string isprintable Returns True if all characters in the string are printable
find Searches the string for a specified value and returns isspace Returns True if all characters in the string are
the position of where it was found whitespaces
format Formats specified values in a string istitle Returns True if the string follows the rules of a title
format_map Formats specified values in a string isupper Returns True if all characters in the string are upper case
index Searches the string for a specified value and returns join Joins the elements of an iterable to the end of the string
the position of where it was found
ljust Returns a left justified version of the string
isalnum Returns True if all characters in the string are
alphanumeric lower Converts a string into lower case
isalpha Returns True if all characters in the string are in the Returns a left trim version of the string
lstrip
alphabet
STRING METHODS
Method Description Method Description
maketrans Returns a translation table to be used in translations strip Returns a trimmed version of the string
partition Returns a tuple where the string is parted into three swapcase Swaps cases, lower case becomes upper case and vice
parts versa
replace Returns a string where a specified value is replaced title Converts the first character of each word to upper case
with a specified value
translate Returns a translated string
rfind Searches the string for a specified value and returns
the last position of where it was found upper Converts a string into upper case
rindex Searches the string for a specified value and returns Fills the string with a specified number of 0 values at the
zfill
the last position of where it was found beginning
rjust Returns a right justified version of the string
startswith Returns true if the string starts with the specified value
Formatting Types
Format Description Method Description
:< Left aligns the result (within the available space) :E Scientific format, with an upper case E
:> Right aligns the result (within the available space) :f Fix point number format
:^ Center aligns the result (within the available space) :F Fix point number format, in uppercase format
(show inf and nan as INF and NAN)
:= Places the sign to the left most position
:g General format
:+ Use a plus sign to indicate if the result is positive or negative
:G General format (using a upper case E for scientific
:- Use a minus sign for negative values only notations)
:d Decimal format
2 Assignment operators
3 Comparison operators
4 Logical operators
5 Identity operators
6 Membership operators
7 Bitwise operators
Python Arithmetic Operators
Python Assignment Operators
AND
X Y X&Y
1 1 1
1 0 0
0 1 0
0 0 0
OR
X Y X|Y
1 1 1
1 0 1
0 1 1
0 0 0
Python Comparison Operators
Python Logical Operators
XOR
X Y X^Y
1 1 0
1 0 1
0 1 1
0 0 0
Python Bitwise Operators
Operator Precedence
List Methods
Method Description
append() Adds an element at the end of the list
clear() Removes all the elements from the list
copy() Returns a copy of the list
count() Returns the number of elements with the specified value
extend() Add the elements of a list (or any iterable), to the end of the current list
index() Returns the index of the first element with the specified value
insert() Adds an element at the specified position
pop() Removes the element at the specified position
remove() Removes the item with the specified value
reverse() Reverses the order of the list
sort() Sorts the list
Python Collections (Arrays)
Collections Ordered Changeable Duplicate
List sıralı değiştirilebilir yinelenebilir
Tuple sıralı değiştirilemez yinelenebilir
Set sıralanmamış değiştirilemez* yinelenmez
Dictionary sıralı** değiştirilebilir yinelenmez
*Set öğeleri değiştirilemez, ancak istediğiniz zaman öğeleri kaldırabilir ve/veya ekleyebilirsiniz.
**Python 3.7 sürümünden itibaren sözlükler sıralıdır . Python 3.6 ve öncesinde sözlükler sırasızdır
Set
Methods
Dictionary Methods
Method Description
clear Removes all the elements from the dictionary
copy Returns a copy of the dictionary
fromkeys Returns a dictionary with the specified keys and value
get Returns the value of the specified key
items Returns a list containing a tuple for each key value pair
keys Returns a list containing the dictionary's keys
pop Removes the element with the specified key
popitem Removes the last inserted key-value pair
setdefault Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
update Updates the dictionary with the specified key-value pairs
values Returns a list of all the values in the dictionary
MATH MODULE
Method Description Method Description
[Link] Returns the arc cosine of a number [Link] Returns the error function of a number
[Link] Returns the inverse hyperbolic cosine of a number [Link] Returns the complementary error function of a number
[Link] Returns the arc sine of a number [Link] Returns E raised to the power of x
[Link] Returns the arc tangent of a number in radians [Link] Returns the absolute value of a number
math.atan2 Returns the arc tangent of y/x in radians [Link] Returns the factorial of a number
[Link] Returns the inverse hyperbolic tangent of a number [Link] Rounds a number down to the nearest integer
[Link] Rounds a number up to the nearest integer [Link] Returns the remainder of x/y
[Link] Returns the number of ways to choose k items from n [Link] Returns the mantissa and the exponent, of a specified
items without repetition and order number
[Link] Returns a float consisting of the value of the first [Link] Returns the sum of all items in any iterable (tuples,
parameter and the sign of the second parameter arrays, lists, etc.)
[Link] Returns the cosine of a number [Link] Returns the gamma function at x
[Link] Returns the hyperbolic cosine of a number [Link] Returns the greatest common divisor of two integers
[Link] Converts an angle from radians to degrees [Link] Returns the Euclidean norm
[Link] Returns the Euclidean distance between two points (p and [Link] Checks whether two values are close to each other, or
q), where p and q are the coordinates of that point not
MATH MODULE
Method Description Method Description
[Link] Checks whether a number is finite or not [Link] Returns the closest value that can make numerator
completely divisible by the denominator
[Link] Checks whether a number is infinite or not
[Link] Returns the sine of a number
[Link] Checks whether a value is NaN (not a number) or not
[Link] Returns the hyperbolic sine of a number
[Link] Rounds a square root number downwards to the nearest
integer [Link] Returns the square root of a number
[Link] Returns the inverse of [Link]() which is x * (2**i) of [Link] Returns the tangent of a number
the given numbers x and i
[Link] Returns the hyperbolic tangent of a number
[Link] Returns the log gamma value of x
[Link] Returns the truncated integer parts of a number
[Link] Returns the natural logarithm of a number, or the logarithm
of number to base
Constant Description
math.log10 Returns the base-10 logarithm of x
math.e Returns Euler's number (2.7182...)
math.log1p Returns the natural logarithm of 1+x
[Link] Returns a floating-point positive infinity
math.log2 Returns the base-2 logarithm of x
[Link] Returns a floating-point NaN (Not a Number)
[Link] Returns the number of ways to choose k items from n
items with order and without repetition
value
[Link] Returns the value of x to the power of y [Link] Returns PI (3.1415...)
[Link] Returns the product of all the elements in an iterable [Link] Returns tau (6.2831...)
[Link] Returns the value of Ex, where E is Euler's number Constant Description
(approximately 2.718281...), and x is the number passed cmath.e Returns Euler's number (2.7182...)
to it
[Link] Checks whether two values are close, or not [Link] Returns a floating-point positive infinity value
[Link] Checks whether x is a finite number [Link] Returns a complex infinity value
[Link] Check whether x is a positive or negative infinty [Link] Returns floating-point NaN (Not a Number) value
[Link] Checks whether x is NaN (not a number) [Link] Returns coplext NaN (Not a Number) value
Mod Description
r Okuma modu : Varsayılan değer. Okuma için bir dosya açar, dosya mevcut değilse hata verir
a Ekleme modu : Ekleme için bir dosya açar, dosya yoksa dosyayı oluşturur
w Yazma modu : Yazma için bir dosya açar, dosya yoksa dosyayı oluşturur. Dosya varsa içeriği silinir ve yeniden
oluşturulur
x Oluşturma modu - Belirtilen dosyayı oluşturur, dosya mevcutsa bir hata döndürür
r+ Okuma ve yazma modu: Dosya varsa açılır; dosya yoksa hata alınır
w+ Yazma ve okuma modu: Dosya varsa içeriği silinir ve yeniden oluşturulur; dosya yoksa oluşturulur
a+ Ekleme ve okuma modu: Dosya varsa açılır ve imleç dosyanın sonuna yerleştirilir; dosya yoksa oluşturulur
LookupError Ortaya çıkan hatalar bulunamadığında ortaya çıkar SystemExit [Link]() fonksiyonu çağrıldığında ortaya çıkar
MemoryError Bir programın belleği dolduğunda ortaya çıkar TypeError İki farklı tür bir araya geldiğinde ortaya çıkar
NameError Bir variable mevcut olmadığında ortaya çıkar UnboundLocalError Local bir variable atama öncesinde referans
alındığında
BUILT-IN EXCEPTIONS
Exception Description
UnicodeError Bir unicode sorunu oluştuğunda ortaya çıkar
ValueError Belirtilen veri türünde yanlış bir değer olduğunda ortaya çıkar
Function Description
findall Tüm eşleşmeleri içeren bir list döndürür
search Metin içinde bir deseni (pattern) arar, ilk bulduğunu döner
split Desene göre metni parçalara böler. Bir list döndürür
sub Desene uyan yerleri başka bir metinle değiştirir.
match Metnin başında deseni arar. Sadece başta varsa eşleşir.
METACHARACTERS
Character Description
[] A set of characters
\ Signals a special sequence (can also be used to escape special characters)
. Any character (except newline character)
^ Starts with
$ Ends with
* Zero or more occurrences
+ One or more occurrences
? Zero or one occurrences
{} Exactly the specified number of occurrences
| Either or
() Capture and group
SPECIAL SEQUENCES
Character Description
\A Returns a match if the specified characters are at the beginning of the string
\b Returns a match where the specified characters are at the beginning or at the end of a word
(the "r" in the beginning is making sure that the string is being treated as a "raw string")
\B Returns a match where the specified characters are present, but NOT at the beginning (or at the end) of a word
(the "r" in the beginning is making sure that the string is being treated as a "raw string")
\d Returns a match where the string contains digits (numbers from 0-9)
\D Returns a match where the string DOES NOT contain digits
\s Returns a match where the string contains a white space character
\S Returns a match where the string DOES NOT contain a white space character
\w Returns a match where the string contains any word characters (characters from a to Z, digits from 0-9, and the
underscore _ character)
\W Returns a match where the string DOES NOT contain any word characters
\Z Returns a match if the specified characters are at the end of the string
SETS
Set Description
[arn] Returns a match where one of the specified characters (a, r, or n) is present
[a-n] Returns a match for any lower case character, alphabetically between a and n
[^arn] Returns a match for any character EXCEPT a, r, and n
[0123] Returns a match where any of the specified digits (0, 1, 2, or 3) are present
[0-9] Returns a match for any digit between 0 and 9
[0-5][0-9] Returns a match for any two-digit numbers from 00 and 59
[a-zA-Z] Returns a match for any character alphabetically between a and z, lower case OR upper case
[+] In sets, +, *, ., |, (), $,{} has no special meaning, so [+] means: return a match for any + character in the
string
STATUS CODE IN REQUESTS MODULE
Code Description
1xx:Bilgi (Informational): İstek alındı ve işleniyor 100 Continue: Sunucu, isteğin başlıklarını aldı; istemci, isteğin gövdesini göndermeye devam edebilir
101 Switching Protocols: İstemcinin protokol değiştirme talebi kabul edildi
2xx: Başarılı (Success): İstek başarıyla alındı, 200 OK: İstek başarılı
anlaşıldı ve kabul edildi 201 Created: İstek başarılı ve yeni bir kaynak oluşturuldu
204 No Content: İstek başarılı, ancak döndürülecek içerik yok
3xx: Yönlendirme (Redirection): İsteğin 301 Moved Permanently: Kaynak kalıcı olarak taşındı; yeni URL belirtilir
tamamlanması için ek işlem gerekiyor 302 Found: Kaynak geçici olarak taşındı; istemci yeni URL'yi kullanmalıdır
304 Not Modified: Kaynakta bir değişiklik yok; önbellekteki versiyon kullanılabilir
4xx: İstemci Hatası (Client Error): İstek hatalı 400 Bad Request: Geçersiz istek
veya işlenemiyor 401 Unauthorized: Yetkilendirme gerekli
403 Forbidden: Erişim yasaklandı
404 Not Found: Kaynak bulunamadı
5xx:Sunucu Hatası (Server Error): Sunucu, 500 Internal Server Error: Genel sunucu hatası
geçerli bir isteği yerine getiremedi 502 Bad Gateway: Sunucu, geçersiz bir yanıt aldı
503 Service Unavailable: Sunucu şu anda kullanılamıyor; genellikle geçicidir
MySQL
customer_id customer_name customer_lastname customer_age Product Name
1 Fehmi UYAR 34 Gömlek
2 Murat BAŞTUĞ 37 Ceket
3 Şükrü EVRAN 36 Gömlek
4 Emrullah ÖZCAN 36 Pantolon
Product_id Product_name
1 Gömlek
2 Ceket
3 Pantolon
4 Kaban
PostgreSQL
PostgreSQL gelişmiş bir ilişkisel
Option B veritabanı sistemidir
1 Python
2 Java
3 C / C++ / C#
4 [Link]
5 Go
6 Ruby
7 Perl ve Tcl
PostgreSQL Tarihi
PostgreSQL, Kaliforniya Üniversitesi
Berkeley Bilgisayar Bilimleri
Bölümü'nde icat edildi.
SQL
Kapasite
Maksimum satır boyutu:
1.6 TB
Bir Satır Max
Operatör Açıklama
$and ve
$or veya
$not değil
Why Use NumPy?
O object
S string
U unicode string
NumPy Array Concatenation
Function Description
[Link]() Dizi birleştirme (ekseni belirleyerek)
[Link]() Yeni bir eksenle dizileri üst üste koyma
[Link]() Yatay (horizontal) birleştirme
[Link]() Dikey (vertical) birleştirme
[Link]() Derinlik (depth) ekseniyle birleştirme
np.column_stack() Sütunlara göre birleştirme
np.row_stack() Satırlara göre birleştirme
NumPy Array Concatenation
Function Description
[Link]() Dizi birleştirme (ekseni belirleyerek)
[Link]() Yeni bir eksenle dizileri üst üste koyma
[Link]() Yatay (horizontal) birleştirme
[Link]() Dikey (vertical) birleştirme
[Link]() Derinlik (depth) ekseniyle birleştirme
np.column_stack() Sütunlara göre birleştirme
np.row_stack() Satırlara göre birleştirme
NumPy Splitting Array
Function Description
[Link]() Belirtilen indekslerde eşit veya özel dilimleme
np.array_split() Eşit olmasa bile bölmeye izin verir
[Link]() Sütunlara göre (horizontal) bölme
[Link]() Satırlara göre (vertical) bölme
[Link]() Derinliğe göre (3. eksen) bölme
NumPy Searching Arrays and Sorting Arrays
Function Description
[Link]() Koşula göre indeks döner
[Link]() Eleman başka dizide var mı?
[Link]() Sıfır olmayanların indekslerini döner
[Link]() / [Link]() En büyük / en küçük değerin indeksi
[Link]() Sıralı diziye öğe yerleştirme konumu
Function Description
[Link]() Sıralı yeni dizi döner
[Link]() Sıralama için gerekli indeksleri döner
[Link]() Yerinde (in-place) sıralama
[Link]() Birden fazla anahtarla sıralama (tuple)
Basic Charts in Seaborn
Açı Birimleri
Sıcaklık Sabitleri
Dönüşüm Formül
Celsius → Kelvin K = °C + 273.15
Kelvin → Celsius °C = K - 273.15
Fahrenheit → Celsius °C = (°F - 32) × 5/9
Celsius → Fahrenheit °F = (°C × 9/5) + 32
Fahrenheit → Kelvin K = ((°F - 32) × 5/9) + 273.15
Kelvin → Fahrenheit °F = ((K - 273.15) × 9/5) + 32
SciPy Constants
Enerji Birimleri
Sabit Değer (Joule cinsinden) Açıklama
[Link] 1.6021766208e-19 Elektron volt – atom altı parçacıkların enerjisini ölçmekte kullanılır.
constants.electron_volt 1.6021766208e-19 Yukarıdakiyle aynıdır.
Termokimyasal kalori – klasik kalori, 1 gram suyu 1°C ısıtmak için
[Link] 4.184
gereken enerji.
constants.calorie_th 4.184 Termokimyasal kalori (aynı değeri verir).
constants.calorie_IT 4.1868 Uluslararası Tablo Kalorisi – biraz daha hassas tanımlama.
[Link] 1e-07 Erg – CGS sisteminde küçük enerji birimi.
British Thermal Unit – İngiliz birim sisteminde enerji ölçer (genelde
[Link] 1055.05585262
ısıtma-soğutma sistemlerinde).
constants.Btu_IT 1055.05585262 Uluslararası Tablo BTU’su.
constants.Btu_th 1054.3502644888888 Termokimyasal BTU.
constants.ton_TNT 4.184e9 TNT tonu – patlayıcı enerjiyi ölçer. 1 ton TNT = 4.184 gigajoule.
SciPy Constants
Beygir Gücü Sabitleri
Sabit İsmi Değeri (Watt) Açıklama
[Link] 745.6998715822701 W Mekanik beygir gücü (horsepower), genelde otomotiv ve makine gücü ölçümünde kullanılır.
[Link] 745.6998715822701 W Yukarıdaki ile aynı; hp sabitinin eşdeğeridir.
: Dotted line
-- Dashed line
-. Dashed/dotted line
r değeri Yorum
0.9 – 1.0 veya -0.9 – -1.0 Çok güçlü ilişki
0.7 – 0.9 veya -0.7 – -0.9 Güçlü ilişki
0.4 – 0.7 veya -0.4 – -0.7 Orta düzeyde ilişki
0.2 – 0.4 veya -0.2 – -0.4 Zayıf ilişki
0 – 0.2 veya -0 – -0.2 Çok zayıf ya da yok
Multiple Regression (Sample Table)
Scale Features (Sample Table)
Confusion Matrix
Bir kişinin komedi gösterisine gidip gitmeyeceğini tahmin eden bir modelimiz olsun
Tahmin: 1 Tahmin: 0
Gerçek: 1 True Positive False Negative
Gerçek: 0 False Positive True Negative
Kısaltma Açıklama
TP - Doğru Pozitif Gerçekten giden birini doğru tahmin etti
TN - Doğru Negatif Gerçekten gitmeyen birini doğru tahmin etti
FP - Yanlış Pozitif Gitmeyen birini gitmiş gibi tahmin etti
FN - Yanlış Negatif Giden birini gitmemiş gibi tahmin etti
Confusion Matrix Metrics
Our Programmer
Team
Get a modern You can simply impress your audience and
PowerPoint add a unique zing and appeal to your
Tony Wilson Presentations.
Presentation that is
beautifully designed. Manager
Content Here
Contents_Here
Example Text : Get a modern PowerPoint Presentation that is beautifully designed. I hope and I
believe that this Template will your Time, Money and Reputation. You can simply impress your
audience and add a unique zing.
We Create
Quality Professional
PPT Presentation
ALLPPT Layout
Clean Text Slide for
your Presentation
$350
You can simply impress your audience and add
a unique zing and appeal to your Presentations.
Easy to change colors, photos and Text.
PRESENTATION
Infographic Style
Your Text Here Your Text Here
You can simply impress your You can simply impress your
audience and add a unique audience and add a unique
zing and appeal to your zing and appeal to your
Presentations. Presentations.
Get a modern PowerPoint Presentation that is beautifully designed. I hope and I believe that this Template will your Time, Money and Reputation. Easy
to change colors, photos and Text. Get a modern PowerPoint Presentation that is beautifully designed. Get a modern PowerPoint Presentation that is
beautifully designed. I hope and I believe that this Template will your Time, Money and Reputation. You can simply impress your audience and add a
unique zing and appeal to your Reports and Presentations with our Templates.
Infographic Style
ALLPPT Layout ALLPPT Layout
Clean Text Slide Clean Text Slide
for your Presentation for your Presentation
Contents_Here Contents_Here
Contents_Here Contents_Here
80 % Text
ALLPPT Layout
Clean Text Slide for your Presentation
Infographic Style
Add Title
You can simply impress your audience
and add a unique zing and appeal to Option A
your Presentations. Easy to change
colors, photos and Text.
We Create
Professional Presentation
LOREM IPSUM
DOLOR SIT AMET,
LOREM IPSUM DOLOR SIT AMET,
CU USU AGAM INTEGRE IMPEDIT.
Infographic Style
Your Text Here
You can simply impress your audience and add a unique
zing and appeal to your Presentations.
AWESOME
PRESENTATION
We Create Quality
Professional PPT Presentation
Get a modern PowerPoint Presentation that is beautifully designed. I hope and I believe that this Template will your Time. Easy
to change colors, photos. You can simply impress your audience and add a unique zing and appeal to your Presentations.
Awesome
Presentation
Your Text Here
I hope and I believe that this
Template will your Time, Money
and Reputation.
PPT Presentation
Infographic Style
40% 50% 60% 70%
Content Here
Get a modern PowerPoint Presentation that is beautifully designed. I hope and I believe that this Template will your Time, Money and Reputation.
Easy to change colors, photos and Text. You can simply impress your audience.
Infographic Style
Text Here Text Here
You can simply impress your audience and add a You can simply impress your audience and add a
unique zing and appeal to your Presentations. unique zing and appeal to your Presentations.
Text Here
Text Here
You can simply impress your audience and add a
You can simply impress your audience and add a unique zing and appeal to your Presentations.
unique zing and appeal to your Presentations.
Text Here
Text Here
You can simply impress your audience and add a
You can simply impress your audience and add a unique zing and appeal to your Presentations.
unique zing and appeal to your Presentations.
AWESOME
PRESENTATION
We Create Quality
Professional PPT Presentation
Infographic Style
Your Text Here
01 You can simply impress your audience and add a unique zing and
appeal to your Presentations.
40% Text Here
You can simply impress your You can simply impress your
audience and add a unique zing audience and add a unique zing
and appeal to your and appeal to your
Presentations. Presentations.
You can simply impress your You can simply impress your
audience and add a unique zing audience and add a unique zing
and appeal to your and appeal to your
Presentations. Presentations.
Infographic Style
Your Text Here
You can simply impress your audience
and add a unique zing and appeal to Your Text Here
your Presentations.
You can simply impress your audience
and add a unique zing and appeal to
your Presentations.
Get a modern PowerPoint Presentation that is beautifully designed. You can simply impress your
audience and add a unique zing and appeal to your Presentations. I hope and I believe that this
You can simply impress your audience and add a unique zing and appeal to your Presentations.
Easy to change colors, photos and Text.
Style
Column Style
Contents A Contents B Contents C
Example Text : Get a modern PowerPoint Example Text : Get a modern PowerPoint Example Text : Get a modern PowerPoint
Presentation that is beautifully designed. I Presentation that is beautifully designed. I Presentation that is beautifully designed. I
hope and I believe that this Template will your hope and I believe that this Template will your hope and I believe that this Template will your
Time, Money and Reputation. Easy to change Time, Money and Reputation. Easy to change Time, Money and Reputation. Easy to change
colors, photos and Text. Get a modern colors, photos and Text. Get a modern colors, photos and Text. Get a modern
PowerPoint Presentation that is beautifully PowerPoint Presentation that is beautifully PowerPoint Presentation that is beautifully
designed. I hope and I believe that this designed. I hope and I believe that this designed. I hope and I believe that this
Template will your Time, Money and Template will your Time, Money and Template will your Time, Money and
Reputation. Easy to change colors, photos Reputation. Easy to change colors, photos Reputation. Easy to change colors, photos
and Text. and Text. and Text.
Example Text : Get a modern PowerPoint Example Text : Get a modern PowerPoint Example Text : Get a modern PowerPoint
Presentation that is beautifully designed. I Presentation that is beautifully designed. I Presentation that is beautifully designed. I
hope and I believe that this Template will your hope and I believe that this Template will your hope and I believe that this Template will your
Time, Money and Reputation. Easy to change Time, Money and Reputation. Easy to change Time, Money and Reputation. Easy to change
colors, photos and Text. colors, photos and Text. colors, photos and Text.
Get a modern PowerPoint Presentation that Get a modern PowerPoint Presentation that Get a modern PowerPoint Presentation that
is beautifully designed. I hope and I believe is beautifully designed. I hope and I believe is beautifully designed. I hope and I believe
that this Template will your Time, Money and that this Template will your Time, Money and that this Template will your Time, Money and
Reputation. Get a modern PowerPoint Reputation. Get a modern PowerPoint Reputation. Get a modern PowerPoint
Presentation that is beautifully designed. Presentation that is beautifully designed. Presentation that is beautifully designed.
Fully Editable Shapes
Fully Editable Shapes
Fully Editable Icon Sets: A
You can Resize without
losing quality
You can Change Fill
Color &
Line Color
FREE
PPT
TEMPLATES
[Link]
Fully Editable Icon Sets: B
You can Resize without
losing quality
You can Change Fill
Color &
Line Color
FREE
PPT
TEMPLATES
[Link]
Fully Editable Icon Sets: C
You can Resize without
losing quality
You can Change Fill
Color &
Line Color
FREE
PPT
TEMPLATES
[Link]