🗂users.txt fayli manzili
👇👇👇
https://www.instagram.com/reel/DCZJY2II2PK/?igsh=MTdqdTEyeXBuMXc=
Are you interested in coding, programming, and tech tutorials? Look no further than Simcoder - the ultimate Telegram channel for all your coding needs! Simcoder is run by the talented individual behind the username @simcoder, who is passionate about sharing their knowledge and expertise with the world. Whether you're a beginner looking to learn the basics of coding or an experienced programmer seeking advanced tips and tricks, Simcoder has got you covered. Join the community of like-minded individuals who are dedicated to enhancing their coding skills and staying up-to-date with the latest trends in the tech industry. Don't miss out on the opportunity to become a coding pro with Simcoder by your side. Join the channel today and start your coding journey towards success!
15 Nov, 13:06
05 Nov, 13:28
def last_digit_of_fibonacci(n):
fib_last_digits = [0, 1]
for i in range(2, 60):
fib_last_digits.append((fib_last_digits[i-1] + fib_last_digits[i-2]) % 10)
return fib_last_digits[n % 60]
def main():
import sys
input = sys.stdin.read
data = input().splitlines()
T = int(data[0])
results = []
for i in range(1, T + 1):
N = int(data[i])
results.append(last_digit_of_fibonacci(N))
for result in results:
print(result)
if __name__ == "__main__":
main()
01 Nov, 02:48
31 Oct, 13:44
30 Oct, 15:43
import webbrowser
telefon_rakami = input("Telefon raqamingizni kiriting: ")
url = f"tel:{telefon_rakami}"
webbrowser.open(url)
import os
import tkinter as tk
from tkinter import messagebox
def load_directory(path):
listbox.delete(0, tk.END)
path_label.config(text=path)
try:
for item in os.listdir(path):
listbox.insert(tk.END, item)
except PermissionError:
messagebox.showerror("Xato", "Ruxsat yo'q")
def on_item_double_click(event):
selection = listbox.curselection()
if selection:
item = listbox.get(selection[0])
new_path = os.path.join(current_path[0], item)
if os.path.isdir(new_path):
current_path[0] = new_path
load_directory(new_path)
root = tk.Tk()
root.title("Ichki Xotirani Ko'ruvchi")
root.geometry("300x400")
current_path = ["/storage/emulated/0"]
path_label = tk.Label(root, text=current_path[0])
path_label.pack()
listbox = tk.Listbox(root)
listbox.pack(fill=tk.BOTH, expand=True)
listbox.bind("<Double-1>", on_item_double_click)
load_directory(current_path[0])
root.mainloop()
import turtle
def draw_branch(branch_length, t):
if branch_length > 5:
t.forward(branch_length)
t.left(30)
draw_branch(branch_length - 15, t)
t.right(60)
draw_branch(branch_length - 15, t)
t.left(30)
t.backward(branch_length)
window = turtle.Screen()
window.bgcolor("lightblue")
t = turtle.Turtle()
t.shape("turtle")
t.color("green")
t.speed(10)
t.left(90)
t.up()
t.backward(100)
t.down()
draw_branch(100, t)
window.mainloop()
19 Oct, 09:47
18 Oct, 16:32
17 Oct, 13:17
13 Oct, 17:01
13 Oct, 02:03
12 Oct, 15:26
11 Oct, 12:45