جاي احاول اتعلم لغة html لان موجودة عندنا بحاسوب الرابع علمي
عندكم شرح حلو على اليوتيوب ويفهم ؟
عندكم شرح حلو على اليوتيوب ويفهم ؟
👍1
import random
num = int(input("عدد الحسابات التريدها : "))
a = []
for _ in range(num):
email = ''.join(random.choice('abcdefghijklmnopqrstuvwxyz') for _ in range(12)) + '@gmail.com'
password = ''.join(random.choice('abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789') for _ in range(15))
a.append(f"الايميل : {email} - الباسورد : {password}")
for aa in a:
print(aa)
كود ينشأ الك حسابات
ايميل : باسورد
مادري بشنو يفيد بس سهل وحلو وسويته عسريع
عندك فكرة ! اكتبها جوا
👍1
import random
num = int(input("حط عدد البطاقات ؟ : "))
for i in range(num):
a = ""
for j in range(16):
i = str(random.randint(0, 9))
a += i
if (j+1) % 4 == 0 and j != 15:
a += ""
b = str(random.randint(1, 12)).zfill(2)
c = str(random.randint(2024, 2030))
d = str(random.randint(100, 999))
aa = f"{a}|{b}|{c}|{d}"
print(aa)
print("• ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ •")
كود ينشأ الك فيزات وهمية عشوائية بس حط عدد البطاقات التريد وهاهيه .
قَالَ رسولُ الله ﷺ : إنَّ مِنْ أفْضَلِ أيَّامِكُمْ يَومَ الجُمُعَةِ ، فَأكْثِرُوا عَلَيَّ مِنَ الصَّلاةِ فِيهِ ، فَإنَّ صَلاَتَكُمْ مَعْرُوضَةٌ عَلَيَّ.
❤3
import math
from turtle import *
def hearta(k):
return 15*math.sin(k)**3
def heartb(k):
return 12*math.cos(k)-5*\
math.cos(2*k)-\
math.cos(3*k)-\
math.cos(4*k)
speed(0)
bgcolor('black')
for i in range (10000):
goto(hearta(i)*20,heartb(i)*20)
for j in range(5):
color("#f73487")
goto(0,0)
done()
كود رسم قلب
- @SeyedAliShakeriii
id.txt
10.5 MB
كود بيه اكثر من 300 ألف ايدي
ماعرف شنو تستفادون منه بس هوا مفيد مادري شلون
ماعرف شنو تستفادون منه بس هوا مفيد مادري شلون
import telebot
bot = telebot.TeleBot("Token")
@bot.message_handler(func=lambda message: True)
def logo(message):
logo = f"https://bcassetcdn.com/asset/logo/4b4b23e4-f3d3-42b1-9c5d-615ac62ef5ac/logo?v=4&text={message.text}"
bot.send_photo(message.chat.id, logo)
bot.infinity_polling()
بوت يصنعلك لوقو بالاسم التدزه .
import telebot
bot = telebot.TeleBot("Token")
@bot.message_handler(func=lambda message: message.text.isdigit())
def num(message):
num = int(message.text)
rel = ""
for i in range(1, 11):
rel += f"{num} × {i} = {num*i}\n"
bot.reply_to(message, rel)
@bot.message_handler(func=lambda message: not message.text.isdigit())
def unnum(message):
bot.reply_to(message, "اكتب بس رقم .")
bot.infinity_polling()
بوت بس تدزله رقم يدزلك جدوله الضرب
ترجمةة.py
875 B
Ar 🇮🇶
كود بوت ترجمة الى 5 لغات الي هي
الانكليزية ، الفرنسية ، العربية ، الصينية ، التركية
من تدزله كلمة راح يدزلك معناها بهذة اللغات بدون Api بـ مكتبة (
-
En 🇬🇧
Code bot translated into 5 languages
English, French, Arabic, Chinese, Turkish
Whoever enters a word, it will provide you with its meaning in these languages without the API using the (
@iq_python - @DuDrD
كود بوت ترجمة الى 5 لغات الي هي
الانكليزية ، الفرنسية ، العربية ، الصينية ، التركية
من تدزله كلمة راح يدزلك معناها بهذة اللغات بدون Api بـ مكتبة (
googletrans
)-
En 🇬🇧
Code bot translated into 5 languages
English, French, Arabic, Chinese, Turkish
Whoever enters a word, it will provide you with its meaning in these languages without the API using the (
googletrans
) .@iq_python - @DuDrD
👍1