🐍 Python & Raspberry 🐍
8.21K subscribers
1.92K photos
125 videos
623 files
1.23K links
Python- Raspberry Pi-AI-IOT
ادمین : فرهاد ناصری زاده
@farhad_naserizadeh
@farhad3412

گروه پایتون
@Python_QA
تبادل
@mmtahmasbi
کانال مرتبط
@new_mathematical
@micropython_iot
@c_micro
اینستاگرام
http://Instagram.com/python_raspberry
Download Telegram
یادگیری رباتیک با پایتون

Learning Robotics using Python: Design, simulate, program, and prototype an autonomous mobile robot using ROS, OpenCV, PCL, and Python
🌟2018


❇️ @raspberry_python
Lentin_Joseph_Learning_Robotics.pdf
18.8 MB
یادگیری رباتیک با پایتون

Learning Robotics using Python: Design, simulate, program, and prototype an autonomous mobile robot using ROS, OpenCV, PCL, and Python
🌟2018


❇️ @raspberry_python
آسیب پذیری جدی روز صفرم در سیستم عامل ویندوز که به صورت گسترده در حال بهره برداری شدن می باشد.
مقامات امنیتی گوگل به کاربران ویندوز هشدار داده اند که از آخرین نسخه ی سیستم عامل ویندوز ۱۰ استفاده بکنند.( اخیرا هکر ها این آسیب پذیری و آسب پذیری اخیر مرورگر گوگل کروم را ادغام کرده اند)
@raspberry_python

منبع:
https://arstechnica.com/information-technology/2019/03/attackers-are-actively-exploiting-a-serious-windows-zeroday-in-the-wild/
The Hacker’s Guide to Python

🔰 🌟 2019

❇️ @raspberry_python
Julien_Danjou_The_Hacker’s_Guide.pdf
4.7 MB
The Hacker’s Guide to Python

🌟2019

Chapter 1: Starting Your Project
Chapter 2: Modules, Libraries, and Frameworks
Chapter 3: Documentation and Good API Practice
Chapter 4: Handling Timestamps and Time Zones
Chapter 5: Distributing Your Software
Chapter 6: Unit Testing
Chapter 7: Methods and Decorators
Chapter 8: Functional Programming
Chapter 9: The Abstract Syntax Tree, Hy, and Lisp-like Attributes
Chapter 10: Performances and Optimizations
Chapter 11: Scaling and Architecture
Chapter 12: Managing Relational Databases
Chapter 13: Write Less, Code More

❇️ @raspberry_python
کمی با ریاضیات

import math

print (math.exp(4))

print (math.log(2,3))

print (math.log2(16))

print (math.log10(10000))

print (math.pow(3,2))

print (math.sqrt(25))


output :

54.598150033144236
0.6309297535714574
4.0
4.0
9.0
5.0

@raspberry_python
رباتی برای دسترسی به آموزش زبان های برنامه نویسی

@LearnFastPackbot
Forwarded from 🐍 Python & Raspberry 🐍 (فرهاد ناصری زاده)
🔴 نحوه اتصال ال سی دی کاراکتری به رزبری پای
@raspberry_python
Forwarded from 🐍 Python & Raspberry 🐍 (فرهاد ناصری زاده)
🔴🌟 کد پایتون اتصال ال سی دی کاراکتری با رزبری پای
import time
import Adafruit_CharLCD as LCD
lcd_rs = 25
lcd_en = 24
lcd_d4 = 23
lcd_d5 = 17
lcd_d6 = 18
lcd_d7 = 22
lcd_backlight = 2
lcd_columns = 16
lcd_rows = 2
lcd = LCD.Adafruit_CharLCD(lcd_rs, lcd_en, lcd_d4, lcd_d5, lcd_d6, lcd_d7, lcd_columns, lcd_rows, lcd_backlight)
lcd.message('Hello\nworld!')
time.sleep(5.0)
lcd.clear()
@raspberry_python
میلاد امام علی (ع) و روز پدر گرامی باد

@raspberry_python
دوستان گویا ریپازیتوری های pip ب مشکل خوردن و از ای پی های ایران دسترسی ندارن بهشون(نمیدونیم تحریمه یا فیلتر کسی میدونه بگه😅)

ولی فیلا برای دسترسی میتونید از فیلتر شکن استفاده کنید
https://t.me/raspberry_python/1714

یا میتونید از تگ —proxy استفاده کنید
می‌تونید هم به صورت System-Wide رو کل سیستم تنظیمش کنید که هر دفعه نیاز نباشه این Flag رو اضافه کنید

https://pip.pypa.io/en/stable/user_guide/#config-file

@raspberry_python
در بهاران كى شود سرسبز سنگ

خاك شو تا گل برويى رنگ رنگ

سال ها تو سنگ بودى دلخراش

آزمون را يك زمانى خاك باش

مولانا

سال ۹۸ بر شما مبارکباد. 🌺🌹

با آروزی سالی همراه با سلامت و موفقیت برای تمامی اعضای محترم کانال

ارادتمند شما فرهاد ناصری زاده

💐💐💚💚💞💞💜💜💗💗🌹🌹🌻🌻🌻🌻🌷🌷🌴🌴🌳🌳🌲🌲🎄🎄🍃🍃🍄🍄🌺🌺🌸🌸
Range Examples


>>> list(range(1,10))
[1, 2, 3, 4, 5, 6, 7, 8, 9]



a = range(1, 10)
for i in a:
print i

for a in range(21,-1,-2):
print a,

#output(python2)>> 21 19 17 15 13 11 9 7 5 3 1



>>> list(range(0,20,2))
[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]

>>> list(range(20,0,-2))
[20, 18, 16, 14, 12, 10, 8, 6, 4, 2]


>>> list(range(10))
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]


>>> list(range(-3.5,9.8))
[-3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8]

❇️ @raspberry_python