پست‌ها

Introduction To Python For Beginner Part 1

Introduction to Course and Style of Learning 1. Introduction to Course and Style of  Learning: Lets run and find out, then think, then play and then break! This course will help you understand tenants of coding and prepare you for the exciting journey toward becoming Python Coder. You will be required to think of ways to break the code! You will be challenged to think what is the other way to do the same thing and why did Python developer decided a particular way! We will learn all major python concept but most importantly learn import and use of print command to learn python! Also learn how to search errors and importance of google search and landing to stack overflow for the solution! Break the code! Variations in the code! See the error and why and why not the error! Resources for this lecture Notebooks.zip 2. Introduction to Course and Style of Learning: 3. Soul of the language Different Ways to Run Python Different ways of running P...

دلیل استفاده دو کمره در گوشی ها چیست؟؟؟

تصویر
"داشتن دودست بهتر است نسبت به یکی" .  لنز های دوگانه با همآهنگی همدیگر جذابیت و زیبایی بیشتری به تصاویر اضافه مینمایند ، درحالیکه لنز اولی به موضوع بیشتر و لنز دومی هم به اطراف موضوع تمرکز مینماید . اینکار باعث میشود تا به گوشی شما قابلیت ثبت تصاویر سه بعدی و تصاویر با پس زمینه بلر(Blur)افزوده شود.  خلاصه قابلیت ها: ثبت تصاویر سه بعدی ثبت تصاویر  software-generated bokeh ثبت تصاویر با وسعت بالا Optical zoom

Python Class Beginners Bootcamp Intro to Python

تصویر
Python Class Beginners Bootcamp Intro to Python Download Course   لست کورس های بیشتر آموزش کامل کمپیوتر آموزش روخوانی قرآنکریم لنک چینیل یوتیوب لنک فیسبوک لنک تلگرام

Introduction To Python For Beginner Part 3

  32. Key Value Pairing – Dict Key Value Pairing - Dict When you wife asks you buy something does she gives you a list, tuple or dict? Two dictionaries and play with the two dictionaries. Looping through the key value pairs. Read about JSON the equilvanet in JS and MongoDB. 1.     # create a mapping of state to abbreviation 2.     states = { 3.          'Oregon' :  'OR' , 4.          'Florida' :  'FL' , 5.          'California' :  'CA' , 6.          'New York' :  'NY' , 7.          'Michigan' :  'MI' 8.     } 9.       10.   # create a basic set of states and some cities in them 11.   cities = { 'CA' :  'San Francisco' , 12.       ...