fa
Feedback
Code With MEMO

Code With MEMO

رفتن به کانال در Telegram

Join a community of passionate learners and builders! We dive deep into: 🔹 Machine Learning (Algorithms, Models, MLOps) 🔹 Coding Tips & Best Practices (Python, AI/ML, Automation) 🔸 collaborative problem solving (challenges ,Q&A....) @codewithmemo

نمایش بیشتر
کشور مشخص نشده استفناوری و برنامه‌ها57 608
199
مشترکین
+124 ساعت
اطلاعاتی وجود ندارد7 روز
اطلاعاتی وجود ندارد30 روز
آرشیو پست ها
If you want to go far, ask those who have returned
The Chinese Proverb 🫡

Loading............ @codewithmebrie

challenges day one: Set the roadmap and select platforms . . . @codewithmebrie @codewithmebrie

Use Python, Mysql/Sqlserver/file your UI is either GUI or CLI

Project Title: Task Management System Project Overview The Task Management System is a web-based application that allows user
Project Title: Task Management System Project Overview The Task Management System is a web-based application that allows users to create, manage, and track their tasks efficiently. Users can organize their tasks into categories, set deadlines, and mark them as complete. The application aims to enhance productivity and help users stay organized. FeaturesUser Authentication: Allow users to create accounts, log in, and manage their tasks securely. • Task Creation: Users can create new tasks with titles, descriptions, deadlines, and priority levels. • Task Management: Users can update, delete, and categorize tasks based on their needs. • Task Status: Users can mark tasks as complete or incomplete. • Search Functionality: Users can search for tasks using keywords or filters     "They say procrastination is the art of keeping up with yesterday. Let's manage those tasks before they manage us!!!! Grow with together @codewithmebrie

Repost from Hanix
Summer Camp and Internships 1. INSA Cyber Talent Challenge – 2017 E.C. Tracks: Cybersecurity | Development | Embedded Systems | Aerospace Apply: Here 2.iCog Labs AI Internship – 2025 Batch 1 Tracks: AI | ML | Robotics | Bioinformatics | Blockchain Deadline: July 31 Apply:Here 3. Kuraz Technologies Hybrid Internship Type: Summer | Unpaid | Hybrid Deadline: May 31 Apply: Here 4. Tewanay Engineering Summer Internship Tracks: Front-End | Back-End | Mobile App Development Deadline: May 31 Apply: Here @HanixJourney #Internship

🌟 Hello, Code with Memo family! 🌟 I hope you're all doing great! I'm excited to continue our journey into the world of Python together. Whether you're a beginner or looking to sharpen your skills, there's always something new to learn. Let's keep coding and supporting each other! Happy coding! 🐍💻

Repost from IS LEETCODERS
🚨 Heads Up, Leet Coders 📅 Today @ 8:00 PM Join Gedion Zeyede for interesting Python live session 💻 🚀 Fast tips. Real talk
🚨 Heads Up, Leet Coders 📅 Today @ 8:00 PM Join Gedion Zeyede for interesting Python live session 💻 🚀 Fast tips. Real talk. Live coding. 📍 Be there or miss out! Let’s code, grow, and glow! ✨🔥

how do you see it?
Anonymous voting

# To convert Celsius to Fahrenheit
celsius = 25
fahrenheit = (celsius * 9/5) + 32
print(celsius, "Celsius is equal to", fahrenheit, "Fahrenheit.")

# To find the sum of n natural numbers
n = 10
sum_n = sum(range(1, n + 1))
print("The sum of the first", n, "natural numbers is:", sum_n)

# Test whether a given year is leap year or not
year = 2024

if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0):
    print(year, "is a leap year.")
else:
    print(year, "is not a leap year.")

# Circulate the value of n variables
def circulate(values):
    return [values[-1]] + values[:-1]

n_values = [1, 2, 3, 4, 5]
print("Before circulation:", n_values)
n_values = circulate(n_values)
print("After circulation:", n_values)

# Exchange the value of two variables
a = 5
b = 10
print("Before exchange: a =", a, ", b =", b)

# Swapping values
a, b = b, a

print("After exchange: a =", a, ", b =", b)

#CHECKING FIBONNACCI SERIOUS OF A NUMBER x = input("Enter an integer: ") def fibonacci(x): list1=[0,1] for i in range(2,int(x)): list1.append(list1[i-1]+list1[i-2]) return list1 print(f"FIBONACCI : {fibonacci(x)}")

#CHECKING FACTORIAL OF THE NUMBER x = input("Enter an integer: ") factorial =1 for i in range(1,int(x)+1,1): factorial*=i print(f"The factorial of the {x} is {factorial}")

#CHECKING ARMSTRONG NUMBER x = input("Enter an integer: ") digit = len(str(x)) total = 0 for i in str(x): total +=pow(int(i),digit) if total == int(x): print("the number is armstrong!!!") else: print("the number is not armstrong")

If the execution of most persons are nice, the prize is due to the time that he/she set in the comment

Hello guys. Write the code by using your familiar prog. Language Using python is specifically best, b/c we are taking it in this channel a. Exchange the value of two variables b.Circulate the value of n variables c. Test whether a given year is leap year or not d. to find the sum of n natural numbers e. To find whether a given number is Armstrong number or not f. To print Fibonacci series g. To find factorial of a given number h. To convert Celsius to Fahrenheit I have a prize for two persons, whose works are very well✌️ Set your answer in the comment section .

This is basic python questions pdf. Do part A in each chapter and try by your self Part B!!! "The joy of coding Python should be in seeing short, concise, readable classes that express a lot of action in a small amount of clear code." – Guido van Rossum(Creator of Python) #finding.....#codewithmemo