وب سایت تخصصی شرکت فرین
دسته بندی دوره ها

Learn Python

سرفصل های دوره

Python Programming


1 - Introduction
  • 1 - installation on windows

  • 2 - Print statement
  • 2 - Print 1
  • 3 - Print 2

  • 3 - Python comments
  • 4 - single line comment
  • 5 - Multiline comment
  • 6 - Triple quotes comment

  • 4 - Python Identifiers
  • 7 - Identifier

  • 5 - Object refrences
  • 8 - Object refrences

  • 6 - Python Variables
  • 9 - Variable 1
  • 10 - Different types of variable
  • 11 - Multiple assignment to variables

  • 7 - Python Literals
  • 12 - string literal
  • 13 - Numeric literal

  • 8 - Python Operators
  • 14 - Arithmetic Operators
  • 15 - Comparison operators
  • 16 - Logical operators
  • 17 - Membership operators

  • 9 - If else statements
  • 18 - If 1
  • 19 - If 2
  • 20 - If else 1
  • 21 - If else 2
  • 22 - Else if
  • 23 - Else if 2

  • 10 - Loops
  • 24 - Loops explain
  • 25 - For loop 1
  • 26 - For loop 2
  • 27 - For loop 3
  • 28 - For loop 4
  • 29 - Range 1
  • 30 - Range 2
  • 31 - While loop 1
  • 32 - While loop 2

  • 11 - Python Break
  • 33 - Break 1
  • 34 - Break 2

  • 12 - Python Continue
  • 35 - Continue

  • 13 - Python Pass
  • 36 - Pass

  • 14 - Python Strings
  • 37 - String 1
  • 38 - String 2
  • 39 - String 3
  • 40 - String 4
  • 41 - String 5
  • 42 - String 6

  • 15 - Python Lists
  • 43 - List 1
  • 44 - List 2
  • 45 - List 3
  • 46 - List 4
  • 47 - List 5

  • 16 - List Operator
  • 48 - List operator 1
  • 49 - List operator 2
  • 50 - List operator 3
  • 51 - List operator 4

  • 17 - List Builtin Functions
  • 52 - List Builtin function

  • 18 - Python Tuples
  • 53 - Tuple
  • 54 - Tuple Example 1
  • 55 - Tuple Example 2
  • 56 - Tuple Example 3
  • 57 - Tuple Slicing
  • 58 - Tuple Repetition

  • 19 - List vs Tuple
  • 59 - List vs Tuple 1
  • 60 - List vs Tuple 2
  • 61 - List vs Tuple 3
  • 62 - List vs Tuple 4

  • 20 - Python Sets
  • 63 - Set 1
  • 64 - Set method
  • 65 - Set Example 1
  • 66 - Set Example 2
  • 67 - Set Example 3
  • 68 - Set add function
  • 69 - Set update function
  • 70 - Set discard method
  • 71 - Set remove function
  • 72 - Set clear method

  • 21 - More on Python Sets
  • 73 - Union of set
  • 74 - Set union method
  • 75 - Set union example
  • 76 - Intersection of set
  • 77 - Intersection of set 2
  • 78 - Intersection of set 3
  • 79 - Difference between the sets
  • 80 - Symmetric difference of set
  • 81 - Set comparisons

  • 22 - Python Dictionary
  • 82 - Dictionary
  • 83 - Dictionary Example 1
  • 84 - Dictionary Example 2
  • 85 - Adding dictionary values
  • 86 - Print new data
  • 87 - Iterating dictionary

  • 23 - Python Functions
  • 88 - Function
  • 89 - Calling a function
  • 90 - Pass by reference vs value
  • 91 - Default argument
  • 92 - Function argument 2
  • 93 - Function argument 3
  • 94 - Return statement
  • 95 - Anonymous function
  • 96 - Scope and Lifetime of variables

  • 24 - Python Builtin Functions
  • 97 - abs
  • 98 - all
  • 99 - any
  • 100 - ascii
  • 101 - bin
  • 102 - bool
  • 103 - bytearray
  • 104 - bytes
  • 105 - callable
  • 106 - chr
  • 107 - compile
  • 108 - complex
  • 109 - delattr
  • 110 - dict
  • 111 - divmod
  • 112 - enumerate
  • 113 - eval
  • 114 - exec
  • 115 - filter
  • 116 - float
  • 117 - format
  • 118 - frozenset
  • 119 - getattr
  • 120 - globals
  • 121 - hasattr
  • 122 - hex
  • 123 - id
  • 124 - input
  • 125 - int
  • 126 - isinstance
  • 127 - issubclass
  • 128 - iter
  • 129 - len
  • 130 - list
  • 131 - locals
  • 132 - map
  • 133 - max
  • 134 - memoryview
  • 135 - min
  • 136 - next
  • 137 - object
  • 138 - oct
  • 139 - ord
  • 140 - pow
  • 141 - print
  • 142 - range
  • 143 - reversed
  • 144 - round
  • 145 - set
  • 146 - setattr
  • 147 - slice
  • 148 - sorted
  • 149 - str
  • 150 - sum
  • 151 - tuple
  • 152 - type
  • 153 - zip

  • 25 - Python Lambda functions
  • 154 - Lambda function 1
  • 155 - Lambda function 2
  • 156 - Lambda function 3
  • 157 - Lambda function 4
  • 158 - Distinction between lambda and def function
  • 159 - Lambda function with filter
  • 160 - Lambda function with list comprehension
  • 161 - Lambda function with ifelse

  • 26 - Python Modules
  • 162 - Python module
  • 163 - Renaming the module
  • 164 - Fromimport
  • 165 - Import multiple object
  • 166 - Locating path of modules
  • 167 - dir builtin function

  • 27 - Python Exceptions
  • 168 - Exception vs syntax error
  • 169 - Try and Except
  • 170 - Raise an exception
  • 171 - Assertion in python

  • 28 - Python Date
  • 172 - Date and Time
  • 173 - Current time
  • 174 - Formatted time
  • 175 - Sleep time
  • 176 - Datetime module
  • 177 - Calendar module
  • 178 - Prcal method

  • 29 - Python Files IO
  • 179 - Python file handling
  • 180 - Close
  • 181 - Write method
  • 182 - Write method 2
  • 183 - File using for loop
  • 184 - Readlines function
  • 185 - Creating a new file
  • 186 - File pointer position
  • 187 - Python OS module
  • 188 - OS module 2

  • 30 - Python Assert
  • 189 - Python assert keyword
  • 190 - Assertion keyword 2

  • 31 - Python List Comprehension
  • 191 - List comprehension
  • 192 - List comprehension 2
  • 193 - List comprehension example
  • 194 - Using condition

  • 32 - Python Collection Module
  • 195 - Collection module 1
  • 196 - Collection module 2
  • 197 - Collection module 3
  • 198 - Collection module 4
  • 199 - Collection module 5

  • 33 - Python Math Module
  • 200 - Math module 1
  • 201 - Math module 2
  • 202 - Math module 3
  • 203 - Math module 4
  • 204 - Ceil
  • 205 - Value of pi
  • 206 - Division concept
  • 207 - dir function

  • 34 - Python OS module
  • 208 - OS module
  • 209 - Get cwd
  • 210 - OSerror
  • 211 - Popen
  • 212 - Close

  • 35 - Python Random module
  • 213 - Random module
  • 214 - Randint
  • 215 - Randrange
  • 216 - Choice
  • 217 - Shuffle

  • 36 - Python Statistics Module
  • 218 - Mean
  • 219 - Median
  • 220 - Mode

  • 37 - Python Arrays
  • 221 - Array 1
  • 222 - Array 2
  • 223 - Del
  • 224 - Array Concatenation

  • 38 - Python Decorator
  • 225 - Python decorator
  • 226 - Inner function
  • 227 - Function return another function

  • 39 - Python Generators
  • 228 - Generator
  • 229 - yield vs return
  • 230 - Generator 2
  • 231 - Memory efficient
  • 232 - Infinite sequence

  • 40 - Python JASON
  • 233 - JASON
  • 234 - Straightforward serialization
  • 235 - Serialization 2
  • 236 - JASON example
  • 237 - Tuple into list
  • 238 - Loads function

  • 41 - Python Multiprocessing
  • 239 - Multiprocessing
  • 240 - Multiprocessing example
  • 241 - Queue class
  • 139,000 تومان
    بیش از یک محصول به صورت دانلودی میخواهید؟ محصول را به سبد خرید اضافه کنید.
    افزودن به سبد خرید
    خرید دانلودی فوری

    در این روش نیاز به افزودن محصول به سبد خرید و تکمیل اطلاعات نیست و شما پس از وارد کردن ایمیل خود و طی کردن مراحل پرداخت لینک های دریافت محصولات را در ایمیل خود دریافت خواهید کرد.

    ایمیل شما:
    تولید کننده:
    مدرس:
    شناسه: 28128
    حجم: 6652 مگابایت
    مدت زمان: 1290 دقیقه
    تاریخ انتشار: ۱۹ دی ۱۴۰۲
    دیگر آموزش های این مدرس
    طراحی سایت و خدمات سئو

    139,000 تومان
    افزودن به سبد خرید