پایتون ( 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
🆔 @Python4all_pro
👍4🙏2
Pattern 4
#code #pattern
🆔 @Python4all_pro
n = 7
for _ in range(n):
for _ in range(n):
print("*", end=" ")
print()
#code #pattern
🆔 @Python4all_pro
👍6😍2
Pattern 5
#code #pattern
🆔 @Python4all_pro
n = 7
for i in range(n):
for j in range(i+1):
print("*", end=" ")
print()
#code #pattern
🆔 @Python4all_pro
👍8👏2😍1
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
#code #pattern
🆔 @Python4all_pro
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
What is the output of the code?
Anonymous Quiz
19%
True False
16%
False True
20%
False False
21%
True True
24%
Error
👍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
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
👍9❤1
پایتون.pdf
1.5 MB
❤🔥10
Pattern 7
#code #pattern
🆔 @Python4all_pro
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
What will be the output of the following Python code?
Anonymous Quiz
9%
0 1 2
12%
a b c
51%
0 a 1 b 2 c
28%
none
👍6👾5🤷♂3
Korites B. - Python Graphics - 2023.pdf
13.6 MB
Python Grapic
این کتاب مرجع خوبی برای یادگیری روشهای ایجاد تصاویر سه بعدی و دو بعدی و انجام کارهای گرافیکی با پایتونه
#pdf
🆔 @Python4all_pro
این کتاب مرجع خوبی برای یادگیری روشهای ایجاد تصاویر سه بعدی و دو بعدی و انجام کارهای گرافیکی با پایتونه
🆔 @Python4all_pro
❤🔥9
Pattern 8
#code #pattern
🆔 @Python4all_pro
n = 7
for i in range(n, 0, -1):
print(" "* (n-i), end="")
for j in range(i):
print("*", end="")
print()
#code #pattern
🆔 @Python4all_pro
👍6🤷♂1
Python by Example.pdf
9.8 MB
یادگیری پایتون با مثال
▪️با 150 چالش و تمرین پایتون را یاد بگیرید
🔻اگه می خواهید با کتاب و تمرین بصورت پروژه محور پایتون رو یاد بگیرید این کتابها برای شماست👇
📘 Coding Projects in python for beginners
📘 Fun Python
#پروژه #pdf
🆔 @Python4all_pro
▪️با 150 چالش و تمرین پایتون را یاد بگیرید
🔻اگه می خواهید با کتاب و تمرین بصورت پروژه محور پایتون رو یاد بگیرید این کتابها برای شماست👇
📘 Coding Projects in python for beginners
📘 Fun Python
#پروژه #pdf
🆔 @Python4all_pro
👍12❤🔥1
What will be the output of the following Python code?
Anonymous Quiz
13%
a b c d
22%
0 1 2 3
53%
error
12%
1 2 3 4
👍18