🐍 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
چگونه اعداد را با استفاده از f-string درمبنای مختلف نشون بدیم

@raspberry_python
Forwarded from RASPBERRY PI FOR ALL (Kasra :|)
با استفاده از دستور lnav میتونید فایل های لاگ رو خیلی بهتر ببینید

برای نصب کردنش
sudo apt install lnav

برای اسنفاده کردنش خیلی راحت همه فایلای مورد نظر رو ب عنوان ارگومان برای برنامه بفرستید

@raspberrypiforall
ubuntu and Centos linux server administration

🌟 2019


🔰 @raspberry_python
MD_Tanvir_Rahman_ubuntu_and_Centos.pdf
8.3 MB
ubuntu and Centos linux server administration

🌟 2019


🔰 @raspberry_python
#آموزش
# Example of flattening a nested sequence using subgenerators

مسطح نمودن محتواهای تو در تو

from collections import Iterable

def flatten(items, ignore_types=(str, bytes)):
for x in items:
if isinstance(x, Iterable) and not isinstance(x, ignore_types):
yield from flatten(x)
else:
yield x

items = [1, 2, [3, 4, [5, 6], 7], 8]

# Produces 1 2 3 4 5 6 7 8
for x in flatten(items):
print(x)

items = ['Dave', 'Paula', ['Thomas', 'Lewis']]
for x in flatten(items):
print(x)

❇️ @raspberry_python
Forwarded from علیرضا آیین‌مهر
آموزش Flask
قسمت ۲۰ | نمایش پیام‌ها به کاربر با فلش


👉 https://youtu.be/su4fQXjLTwI

📲 @Ayinmehr
Forwarded from RASPBERRY PI FOR ALL (Kasra :|)
At Open Source Summit Europe in France, GitHub COO Erica Brescia said: “99% of software projects are built on open source."
she also added:
“In these increasingly difficult geopolitical times. . . [many] companies have decided to geo-block access to their products for Iran, Syria, and Crimea, but GitHub has taken a different approach. We have left all of our open-source repositories available to developers in those countries.”


اریکا برسیکا در کنفرانس اوپن سورس فرانسه گفته که ما میدونیم همه تکنولوژی ها برای ۳ تا کشور ایران، سوریه و کریمیا[ نمیدونم کجاس اصن ] تحریمه ولی ما تاحد امکان اون هارو تحریم نکردیم و همین موضوع بلاک کردن اونا برای ریپازیتوری های خصوصی کاملا برخلاف میل ماست .

همچنین ی چیزایی هم در مورد توضیع دوولوپرهای اوپن سورس توی جهان حرف زده و گفته هند و چین بیشترین سرعت رشد رو دارن

بعدشم گفت ک میخوان شرایط ویژه ای تو چین برای دسترسی ب گیت هاب درست کنن :)
StoryLink

@raspberrypiforall
🔴 بزرگترین گروه پایتون (لینک 👇)


@PYTHON_QA
Javier_Riverola_Gurruchaga_Solve.pdf
5.7 MB
Solve It With PYTHON !: A Programming Guide To Ease Your Science And Engineering Challenges

کتابی فوق العاده در خصوص حل مسائل علمی و مهندسی به همراه بهینه سازی

🌟جدید 2019

❇️ @raspberry_python
Linux Device Driver Development Cookbook: Develop custom drivers for your embedded Linux applications

🌟 2019

❇️ @raspberry_python
Rodolfo_Giometti_Linux_Device_Driver.pdf
8.6 MB
Linux Device Driver Development Cookbook: Develop custom drivers for your embedded Linux applications

🌟 2019

❇️ @raspberry_python
Learning Geospatial Analysis with Python: Understand GIS fundamentals and perform remote sensing data analysis using Python 3.7

🌟 2019

❇️ @raspberry_python
Joel_Lawhead_Learning_Geospatial.pdf
57.2 MB
Learning Geospatial Analysis with Python: Understand GIS fundamentals and perform remote sensing data analysis using Python 3.7

🌟 2019

❇️ @raspberry_python
Reinforcement Learning Algorithms with Python: Learn, understand, and develop smart algorithms for addressing AI challenges

یادگیری الگوریتم ها با پایتون و استفاده در هوش مصنوعی

🌟 جدید 2019

❇️ @raspberry_python
Andrea_Lonza_Reinforcement_Learning.pdf
22 MB
Reinforcement Learning Algorithms with Python: Learn, understand, and develop smart algorithms for addressing AI challenges

یادگیری الگوریتم ها با پایتون و استفاده در هوش مصنوعی

🌟 جدید 2019

❇️ @raspberry_python
تا حدودا دوماه دیگه پایتون ۲ ب صورت رسمی پشتیبانی نخواهد شد و همچنان تعداد بیسار زیادی پروژه و محصولات مختلف هستن ک با پایتون ۲ اجرا میشن
اینجا ی مقاله هست ک در مورد بازنویسی کردن یا نکردن کدهاتون تو پایتون ۳ بحث میکنه

https://switowski.com/blog/you-dont-have-to-migrate-to-python3

@raspberry_python
تو پایتون میتونید با نوشتن یونیکد مربوط ب هر اموجی اون اموجی رو چاپ کنید

برای اطلاعات بیشتر لینک زیر رو نگا کنید
emojies official lists

@raspberry_python
Forwarded from RASPBERRY PI FOR ALL (Kasra :|)
ی تعداد از توابع و کتابخونه های بسیار پرکاربرد python
An A-Z of useful Python tricks

@raspberry_python