پایتون ( Machine Learning | Data Science )
23.8K subscribers
494 photos
59 videos
103 files
348 links
◀️اینجا با تمرین و چالش با هم پایتون رو یاد می گیریم

بانک اطلاعاتی پایتون
پروژه / code/ cheat sheet
+ویدیوهای آموزشی

+کتابهای پایتون
تبلیغات:
@alloadv

🔁ادمین :
@maryam3771
Download Telegram
Pattern 2

n = 7
for i in range(n, 0, -1):
print(i, end=" ")


#code #pattern

🆔 @Python4all_pro
👍19🆒3
Python_Basics_Cheat_Sheet-updated.pdf
7.1 MB
هر روز یک Cheat Sheet
برگه تقلب شماره ۱۲ پایتون

Cheat Sheet 12: Python


#cheat_sheet #pdf

🆔 @Python4all_pro
❤‍🔥2
تمرین  : خروجی این کد پایتون چیست ؟

#code #test

🆔 @Python4all_pro
👍6
What will be the output of the following Python code snippet?
Anonymous Quiz
10%
abcd
45%
ABCD
37%
error
8%
none
🆒19🤡7👍2
Pattern 3

n = 7
for _ in range(n):
print("*", end=" ")


#code #pattern

🆔 @Python4all_pro
👍7👏2💊2🤡1
🧑‍💻👩‍💻 دست به کد شوید
 
‼️خروجی این کد پایتون چیست ؟

#code #test

🆔 @Python4all_pro
🙏2😍1
What will be displayed by the code?
Anonymous Quiz
3%
1 1
10%
1 44
25%
3 1
31%
3 44
20%
Error
12%
None of the above
👍10👾10
پایتون ( Machine Learning | Data Science )
What will be displayed by the code?
The value of t=3 is passed in funcion f(value,values) , v [list] is passed as values in the same function. The v is stored in values and values[0]=44 , changes the value at index[‘0’] in the list hence v=[44,2,3].


🆔 @Python4all_pro
👍4🙏2
Pattern 4

n = 7
for _ in range(n):
for _ in range(n):
print("*", end=" ")
print()



#code #pattern

🆔 @Python4all_pro
👍6😍2
هر یک از کتابخانه های پایتون مناسب چه کاری است؟

#کتابخانه

#library

🆔 @Python4all_pro
👍11😍3
Pattern 5

n = 7
for i in range(n):
for j in range(i+1):
print("*", end=" ")
print()



#code #pattern

🆔 @Python4all_pro
👍8👏2😍1
تمرین  : خروجی این کد پایتون چیست ؟

#code #test

🆔 @Python4all_pro
👍3
What will be the output of the following Python code?
Anonymous Quiz
13%
0 1 2
59%
a b c
14%
0 a 1 b 2 c
15%
none
👍5🆒4
Pattern 6

n = 7
for i in range(n, 0, -1):
for j in range(i+1):
print("*", end=" ")
print()


#code #pattern

🆔 @Python4all_pro
🆒7👍3🦄2🤷‍♂1
⁉️ تمرین  : به نظر شما گزینه درست کدومه ؟

#code #test

🆔 @Python4all_pro
👍4
👍10🤷‍♂5🤷‍♀1
پایتون ( Machine Learning | Data Science )
What is the output of the code?
Explanation:
The objects with same contents share the same object in the python library but this is not true for custom-defined immutable classes.



🆔 @Python4all_pro
👍91
پایتون.pdf
1.5 MB
فلش کارت های پایتون ( زبان فارسی )



🆔 @Python4all_pro
❤‍🔥10
Python Flash Cards.pdf
1 MB
فلش کارت های پایتون ( زبان انگلیسی )


🆔 @Python4all_pro
👍6
Pattern 7

n = 7
for i in range(n):
print(" "* (n-i), end="")
for j in range(i+1):
print("*", end="")
print()



#code #pattern

🆔 @Python4all_pro
👍11🦄1💊1