This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from rich import print | |
from time import time | |
from contextlib import suppress | |
from requests.exceptions import ConnectionError | |
import requests | |
from parsel import Selector | |
from time import sleep | |
import threading | |
from threading import enumerate as threads | |
from httpx import AsyncClient as Session |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://aka.ms/vs/17/release/vc_redist.x64.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
def mixString(strs: dict) -> str: | |
random.shuffle(strs) | |
mixed = "" | |
for str in strs: | |
mixed = mixed + str + " " | |
return mixed | |
print(mixString(["deneme", "mahalle", "ali", "veli"])) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kenar1 = int(input("1. Kenar uzunluğu: ")) | |
kenar2 = int(input("2. Kenar uzunluğu: ")) | |
kenar3 = int(input("3. Kenar uzunluğu: ")) | |
sayilar = [kenar1, kenar2, kenar3] | |
kenar = 0 | |
for i, v in enumerate(sayilar): | |
for index, sayi in enumerate(sayilar): | |
if i != index and v == sayi: | |
kenar = kenar + 1 |