Telegram Group & Telegram Channel
🎲#گام_به_گام

💻 کدنویسی

0️⃣1️⃣ دستورات پایه در پایتون: قسمت دهم

🔣مختلط
اعداد مختلط با یک "j" به عنوان قسمت موهومی نوشته می شوند:
🟣 مثال
x = 3+5j
y = 5j
z = -5j

print(type(x))
print(type(y))
print(type(z))
خروجی پایتون:
<class 'complex'>
<class 'complex'>
<class 'complex'>
🔣 تبدیل نوع
می توانید با متدهای ()int()، float و ()complex یک نوع را به نوع دیگر تبدیل کنید:
🟣 مثال
x = 1 # int
y = 2.8 # float
z = 1j # complex

#convert from int to float:
a = float(x)

#convert from float to int:
b = int(y)

#convert from int to complex:
c = complex(x)

print(a)
print(b)
print(c)

print(type(a))
print(type(b))
print(type(c))
خروجی پایتون
1.0
2
(1+0j)
<class 'float'>
<class 'int'>
<class 'complex'>

❗️توجه: نمی توانید اعداد مختلط را به نوع اعداد دیگری تبدیل کنید.

🔣عدد تصادفی
پایتون یک تابع تصادفی () برای ساخت یک عدد تصادفی ندارد، اما پایتون یک ماژول داخلی به نام random دارد که می‌توان از آن برای ساخت اعداد استفاده کرد:

🟣 مثال
ماژول تصادفی را وارد کنید و یک عدد تصادفی بین 1 و 9 نمایش دهید:
import random

print(random.randrange(1, 10))
خروجی پایتون:
1

👈 ادامه دارد....

#️⃣#کدنویسی
#️⃣#IDSchools
#️⃣#IDS
#️⃣#IDS_Math

✉️@IDSchools
✉️@IDS_Math
Please open Telegram to view this post
VIEW IN TELEGRAM



group-telegram.com/IDS_Math/155
Create:
Last Update:

🎲#گام_به_گام

💻 کدنویسی

0️⃣1️⃣ دستورات پایه در پایتون: قسمت دهم

🔣مختلط
اعداد مختلط با یک "j" به عنوان قسمت موهومی نوشته می شوند:
🟣 مثال
x = 3+5j
y = 5j
z = -5j

print(type(x))
print(type(y))
print(type(z))
خروجی پایتون:
<class 'complex'>
<class 'complex'>
<class 'complex'>
🔣 تبدیل نوع
می توانید با متدهای ()int()، float و ()complex یک نوع را به نوع دیگر تبدیل کنید:
🟣 مثال
x = 1 # int
y = 2.8 # float
z = 1j # complex

#convert from int to float:
a = float(x)

#convert from float to int:
b = int(y)

#convert from int to complex:
c = complex(x)

print(a)
print(b)
print(c)

print(type(a))
print(type(b))
print(type(c))
خروجی پایتون
1.0
2
(1+0j)
<class 'float'>
<class 'int'>
<class 'complex'>

❗️توجه: نمی توانید اعداد مختلط را به نوع اعداد دیگری تبدیل کنید.

🔣عدد تصادفی
پایتون یک تابع تصادفی () برای ساخت یک عدد تصادفی ندارد، اما پایتون یک ماژول داخلی به نام random دارد که می‌توان از آن برای ساخت اعداد استفاده کرد:

🟣 مثال
ماژول تصادفی را وارد کنید و یک عدد تصادفی بین 1 و 9 نمایش دهید:
import random

print(random.randrange(1, 10))
خروجی پایتون:
1

👈 ادامه دارد....

#️⃣#کدنویسی
#️⃣#IDSchools
#️⃣#IDS
#️⃣#IDS_Math

✉️@IDSchools
✉️@IDS_Math

BY ریاضی، آمار و علوم کامپیوتر - مدارس میان‌رشته‌ای


Warning: Undefined variable $i in /var/www/group-telegram/post.php on line 260

Share with your friend now:
group-telegram.com/IDS_Math/155

View MORE
Open in Telegram


Telegram | DID YOU KNOW?

Date: |

Although some channels have been removed, the curation process is considered opaque and insufficient by analysts. Since its launch in 2013, Telegram has grown from a simple messaging app to a broadcast network. Its user base isn’t as vast as WhatsApp’s, and its broadcast platform is a fraction the size of Twitter, but it’s nonetheless showing its use. While Telegram has been embroiled in controversy for much of its life, it has become a vital source of communication during the invasion of Ukraine. But, if all of this is new to you, let us explain, dear friends, what on Earth a Telegram is meant to be, and why you should, or should not, need to care. The gold standard of encryption, known as end-to-end encryption, where only the sender and person who receives the message are able to see it, is available on Telegram only when the Secret Chat function is enabled. Voice and video calls are also completely encrypted. The Dow Jones Industrial Average fell 230 points, or 0.7%. Meanwhile, the S&P 500 and the Nasdaq Composite dropped 1.3% and 2.2%, respectively. All three indexes began the day with gains before selling off. Oh no. There’s a certain degree of myth-making around what exactly went on, so take everything that follows lightly. Telegram was originally launched as a side project by the Durov brothers, with Nikolai handling the coding and Pavel as CEO, while both were at VK.
from ca


Telegram ریاضی، آمار و علوم کامپیوتر - مدارس میان‌رشته‌ای
FROM American