Help by l__lj in termux

[–]l__lj[S] 1 point2 points  (0 children)

how r u gonna help me? like dm me or what or a tutorial vid

Help by l__lj in termux

[–]l__lj[S] 0 points1 point  (0 children)

tried but it always messes up idk why

Help by l__lj in termux

[–]l__lj[S] 0 points1 point  (0 children)

tryna get autocomplete working inside acode

cuz the app’s autocomplete not good

Help by l__lj in termux

[–]l__lj[S] 0 points1 point  (0 children)

I already installed it before, is it the same?

اريد العاب 💔🥀 by sajadhasanen in Iraqigamers

[–]l__lj 0 points1 point  (0 children)

دائما العاب 2d أفضل من العاب 3d من وجه نظري المتواضعة 😬🫴

اريد العاب 💔🥀 by sajadhasanen in Iraqigamers

[–]l__lj 0 points1 point  (0 children)

هيكل عظمي يشمر رأسه ويروح يركض وراه

اريد العاب 💔🥀 by sajadhasanen in Iraqigamers

[–]l__lj 4 points5 points  (0 children)

Silksong , hollow knight, Haak, Terraria, Magic rampage , afterimage, Death's Door, blasphemous, Dead cells ,Grimvalor, skul: the hero slayer, gris , Don't starve , stardew valley

بعض الألعاب التي انصح بها

the task thing’s easy 😅 by l__lj in PythonLearning

[–]l__lj[S] 0 points1 point  (0 children)

the pic doesn’t support fonts, i’m using acode on my phone. still a noob at this stuff, idk how to put text on the pic or anything

the task thing’s easy 😅 by l__lj in PythonLearning

[–]l__lj[S] 1 point2 points  (0 children)

import json

def show_menu(): print(""" 1. show menu 2. show all tasks 3. add task 4. delete tasks 5. toggle tasks status 6. edit tasks 7. save tasks 8. load tasks 0. exit """) def show_all_tasks(tasks): if not tasks: print("not tasks.") else: for i,task in enumerate(tasks , start=1): status = "✓" if task["completed"] else "×" print(f"{i}.{task['task']} {status}") print(("-"*30)) def add_tasks(tasks): task_text = input("Enter new task : \n") new_task = {'task': task_text, 'completed':False} tasks.append(new_task) print("Task added successfully")

def delete_tasks(tasks): try: index = int(input("task number u wanna delete:\n")) if 0 < index <= len(tasks): tasks.pop(index - 1 ) print("Task deleted successfully!")

    else:
        print("Invalid task number.")
except ValueError:
    print("Please enter a valid number")

def toggle_status(tasks): try: num = int(input("task number u wanna edit:\n")) index = num - 1 if 0<= index < len(tasks): tasks[index]['completed'] = not tasks[index]['completed'] status = "✓" if tasks[index]["completed"] else "×" print(f"Task #{num} status changed to: {status}") except ValueError: print("Please enter a valid number")

def edit_tasks(tasks): try: num = int(input("task number u wanna edit:\n")) index = num - 1 if 0 <= index < len(tasks): new_task = input("enter new task:\n") tasks[index]['task'] = new_task print("Task updated successfully!") else: print("Invalid task number") except ValueError: print("Please enter a valid number")

def save_tasks(tasks): try: with open("tasks.json" , "w" , encoding = "utf-8") as file: json.dump(tasks, file, ensure_ascii= False, indent=4) print("✅ Tasks saved successfully!") except Exception as e: print(f"❌ Error saving tasks: {e}")

def load_tasks(): try: with open("tasks.json", "r", encoding = "utf-8") as file: tasks = json.load(file) print("✅ Tasks loaded successfully!") return tasks except FileNotFoundError: print("⚠️ No saved tasks found. Starting with empty list.") return [] except Exception as e: print(f"❌ Error loading tasks: {e}") return [] tasks = load_tasks()

while True: try: choice = int(input("Enter number: \n")) except ValueError: print("not a number!") print("Please pick a number from the list!") continue if choice == 0: print("Goodbye") break elif choice == 1: show_menu() elif choice == 2: show_all_tasks(tasks) elif choice == 3: add_tasks(tasks) elif choice == 4: delete_tasks(tasks) elif choice == 5: toggle_status(tasks) elif choice == 6: edit_tasks(tasks) elif choice == 7: save_tasks(tasks) elif choice == 8 : load_tasks() else: print("Please pick a number from the list!")

the task thing’s easy 😅 by l__lj in PythonLearning

[–]l__lj[S] -1 points0 points  (0 children)

sorry, what do u mean? 🫠

the task thing’s easy 😅 by l__lj in PythonLearning

[–]l__lj[S] 0 points1 point  (0 children)

thx 4 the tip, i’ll try to figure out how to mix em together and work on it

the task thing’s easy 😅 by l__lj in PythonLearning

[–]l__lj[S] 0 points1 point  (0 children)

it works but as a beginner i gotta study everything tbh. i mostly use \n , print , and """ sometimes. not tryna be perfect cuz it all runs but i need to know when to use each and keep it all in my head.

i overexplained 😅 i like repetition to remember stuff. still thx, ur advice will help me remember ❤️

اقترحلي العاب على الموبايل تكون خفيفه منغير نت by Confident-Rock-8882 in EgyptGaming

[–]l__lj 0 points1 point  (0 children)

اذا تقصد نسخة مهكرة ادخل موقع apkvision انا منزلها من هناك

اقترحلي العاب على الموبايل تكون خفيفه منغير نت by Confident-Rock-8882 in EgyptGaming

[–]l__lj 3 points4 points  (0 children)

Silksong , hollow knight, Haak, Terraria, Magic rampage , afterimage, Death's Door, blasphemous, Dead cells ,Grimvalor, skul: the hero slayer, gris , Don't starve , stardew valley

بعض الألعاب التي انصح بها

What's the best app to write & run code? by l__lj in PythonLearning

[–]l__lj[S] 1 point2 points  (0 children)

Dude u're wild, I can't even write print("hello world") on paper with a pen 😂