Track phone number using Python
Free Code: https://www.clcoding.com/2022/09/day-96-track-phone-number-using-python.html
#code
🆔 @Python4all_pro
Free Code: https://www.clcoding.com/2022/09/day-96-track-phone-number-using-python.html
#code
🆔 @Python4all_pro
Sending a WhatsApp Message using Python
Free Code: https://www.clcoding.com/2024/04/sending-whatsapp-message-using-python.html
#code
🆔 @Python4all_pro
Free Code: https://www.clcoding.com/2024/04/sending-whatsapp-message-using-python.html
#code
🆔 @Python4all_pro
Pattern 23
#code #pattern
🆔 @Python4all_pro
n = 7
for i in range(n):
for j in range(i+1):
if i % 2 == 0:
print("*", end=" ")
else:
print("#", end=" ")
print()
#code #pattern
🆔 @Python4all_pro
۷۱ پروژه برتر پایتون برای مبتدیان [به همراه کد ]
https://morioh.com/p/25322af6c72c?f=5cb7d89d660c8335951ca454
#پروژه
🆔 @Python4all_pro
https://morioh.com/p/25322af6c72c?f=5cb7d89d660c8335951ca454
#پروژه
🆔 @Python4all_pro
هر روز یک Cheat Sheet : برگه تقلب شماره 16
این ممکن است جامع ترین برگه تقلبی باشد که تاکنون دیده ایم که در قالب یک صفحه وب با لینک های مناسب به بخش ها ساخته شده است. در قالب PDF نیز قابل دانلود است.
🔗 Github : https://kieranholland.com/best-python-cheat-sheet/
📘PDF: https://kieranholland.com/best-python-cheat-sheet/best-python-cheat-sheet.pdf
#cheat_sheet #pdf
🆔 @Python4all_pro
این ممکن است جامع ترین برگه تقلبی باشد که تاکنون دیده ایم که در قالب یک صفحه وب با لینک های مناسب به بخش ها ساخته شده است. در قالب PDF نیز قابل دانلود است.
🔗 Github : https://kieranholland.com/best-python-cheat-sheet/
📘PDF: https://kieranholland.com/best-python-cheat-sheet/best-python-cheat-sheet.pdf
#cheat_sheet #pdf
🆔 @Python4all_pro
💎هر روز یک Cheat Sheet : برگه تقلب شماره ۱۷ :
برگه تقلب مفید برای کتابخانه BeautifulSoup
کتابخانه BeautifulSoup برای استخراج داده ها از صفحات وب طراحی شده است.
این برگه تقلب بسیار گسترده است و جنبه هایی مانند نصب، ایجاد یک شی BeautifulSoup، کار با انواع مختلف اشیاء، جستجو در درخت تجزیه و غیره را پوشش می دهد.
📌 https://proxiesapi.com/articles/the-complete-beautifulsoup-cheatsheet-with-examples
#cheat_sheet #کتابخانه #library
🆔 @Python4all_pro
برگه تقلب مفید برای کتابخانه BeautifulSoup
کتابخانه BeautifulSoup برای استخراج داده ها از صفحات وب طراحی شده است.
این برگه تقلب بسیار گسترده است و جنبه هایی مانند نصب، ایجاد یک شی BeautifulSoup، کار با انواع مختلف اشیاء، جستجو در درخت تجزیه و غیره را پوشش می دهد.
📌 https://proxiesapi.com/articles/the-complete-beautifulsoup-cheatsheet-with-examples
#cheat_sheet #کتابخانه #library
🆔 @Python4all_pro
What will be the output of the code?
Anonymous Quiz
21%
Before After 8
30%
Before 8 After
11%
8 Before After
19%
8
10%
Error
8%
None of the above
پایتون ( Machine Learning | Data Science )
⁉️ تمرین : به نظر شما گزینه درست کدومه ؟ #code #test 🆔 @Python4all_pro
Explanation:
The code defines a decorator function decorator that takes a function func as an argument and returns a wrapper function. The wrapper function is responsible for performing some additional actions before and after the execution of func.
The @decorator syntax is used to decorate the my_function function with the decorator function. This means that when my_function is called, it will be wrapped by the wrapper function defined in the decorator function.
When my_function(3, 5) is called, the decorator function's wrapper function is executed. It prints "Before function execution", then calls my_function with the provided arguments and stores the result in the result variable. After that, it prints "After function execution" and returns the result.
Finally, the value of result is printed to the console, which will be the sum of the arguments passed to my_function, resulting in the output "8".
Therefore, the correct answer is option 😎 Before function execution, 8, After function execution. The program will output those three lines in the given order.
#code #test
🆔 @Python4all_pro
The code defines a decorator function decorator that takes a function func as an argument and returns a wrapper function. The wrapper function is responsible for performing some additional actions before and after the execution of func.
The @decorator syntax is used to decorate the my_function function with the decorator function. This means that when my_function is called, it will be wrapped by the wrapper function defined in the decorator function.
When my_function(3, 5) is called, the decorator function's wrapper function is executed. It prints "Before function execution", then calls my_function with the provided arguments and stores the result in the result variable. After that, it prints "After function execution" and returns the result.
Finally, the value of result is printed to the console, which will be the sum of the arguments passed to my_function, resulting in the output "8".
Therefore, the correct answer is option 😎 Before function execution, 8, After function execution. The program will output those three lines in the given order.
#code #test
🆔 @Python4all_pro
Pattern 24
#code #pattern
🆔 @Python4all_pro
n = 7
for i in range(n):
for j in range(i+1):
if j % 3 == 0:
print("*", end=" ")
elif j % 3 == 1:
print("#", end=" ")
else:
print("@", end=" ")
print()
#code #pattern
🆔 @Python4all_pro
Python Code to Display Calendar 🗓️ :
import calendar
# Enter the month and year
yy = int(input("Enter year: "))
mm = int(input("Enter month: "))
# display the calendar
print(calendar.month(yy,mm))
#code
🆔 @Python4all_pro
import calendar
# Enter the month and year
yy = int(input("Enter year: "))
mm = int(input("Enter month: "))
# display the calendar
print(calendar.month(yy,mm))
#code
🆔 @Python4all_pro
🔅 Countdown timer
#code
🆔 @Python4all_pro
import time
def countdown(t):
while t:
mins, secs = divmod(t, 60)
timer = '{:02d}:{:02d}'.format(mins,secs)
print(timer, end="\r")
time.sleep(1)
t -= 1
print('Timer completed!')
t = input('Enter the time in seconds: ')
countdown(int(t))
#code
🆔 @Python4all_pro
پروژه پایتون: اپلیکیشن آب و هوا با پایتون بسازید
https://morioh.com/p/ce2e328ba165?f=5c21fb01c16e2556b555ab32
#پروژه
#code
🆔 @Python4all_pro
https://morioh.com/p/ce2e328ba165?f=5c21fb01c16e2556b555ab32
#پروژه
#code
🆔 @Python4all_pro
Element information using Python
Free Code with explanation: https://www.clcoding.com/2024/04/element-information-using-python.html
#code
🆔 @Python4all_pro
Free Code with explanation: https://www.clcoding.com/2024/04/element-information-using-python.html
#code
🆔 @Python4all_pro
Media is too big
VIEW IN TELEGRAM
Python Full Course for Beginners | Complete All-in-One Tutorial
📌 این دوره آموزشی کامل پایتون برای مبتدیان حاوی نزدیک به 9 ساعت کد پایتون و دستورالعمل برای ارتقاء سطح مهارت های برنامه نویسی شما است. این دوره تمام اصول پایتون را آموزش می دهد.
🔖 منابعی که برای این دوره استفاده شده:
TypeScript: https://github.com/gitdagray/python-course
📍کد ویژوال استودیو:
https://code.visualstudio.com/
#Free_course
🆔 @Python4all_pro
📌 این دوره آموزشی کامل پایتون برای مبتدیان حاوی نزدیک به 9 ساعت کد پایتون و دستورالعمل برای ارتقاء سطح مهارت های برنامه نویسی شما است. این دوره تمام اصول پایتون را آموزش می دهد.
🔖 منابعی که برای این دوره استفاده شده:
TypeScript: https://github.com/gitdagray/python-course
📍کد ویژوال استودیو:
https://code.visualstudio.com/
#Free_course
🆔 @Python4all_pro
30 پروژه پایتون ویژه مبتدیان برای شروع کدنویسی (به همراه کد )
با ساخت 30 پروژه سرگرم کننده و آسان که یادگیری پایتون را شروع کنید!
شما چه کاملا مبتدی باشید و چه تجربه کمی در برنامه نویسی داشته باشید، چیزی برای به چالش کشیدن و الهام بخشیدن به شما در این پروژه ها پیدا خواهید کرد.
https://morioh.com/a/778c1bdf55fa/30-python-projects-for-beginners-to-get-started-coding
#پروژه
#code
🆔 @Python4all_pro
با ساخت 30 پروژه سرگرم کننده و آسان که یادگیری پایتون را شروع کنید!
شما چه کاملا مبتدی باشید و چه تجربه کمی در برنامه نویسی داشته باشید، چیزی برای به چالش کشیدن و الهام بخشیدن به شما در این پروژه ها پیدا خواهید کرد.
https://morioh.com/a/778c1bdf55fa/30-python-projects-for-beginners-to-get-started-coding
#پروژه
#code
🆔 @Python4all_pro
Forwarded from تهران دیتا-دانشگاه تهران
شروع دوره:
جامعترین دوره پروژه محور علم داده کل کشور
15 سرفصل کاربردی با 12 نرم افزار و ابزار تخصصی
Please open Telegram to view this post
VIEW IN TELEGRAM