排序
Python Day- 14 Looping-Exercises and tasks
Python Day- 14 Looping-Exercises and tasks,Prime Numbers: Numbers which are divisible by 1 and itself are called as prime numbers.(Eg-->3,5,7) 1) Find prime number or not: no = ...
Python – Level : 2 Tasks
Python - Level : 2 Tasks, Level:2 Tasks 1) 7, 10, 8, 11, 9, 12, 10 # 7,10,8,11,9,12,10 no = 7 count = 0 while count < 7: print(no, end=',') if count % 2 == 0: no += 3 else: no -...
Python – Level : 1 Tasks
Python - Level : 1 Tasks, Level 1 Tasks 1) Fahrenheit to Celcius Conversion f=int(input('Enter the no. ')) c=5/9*(f-32) print('Fahrenheit to celsius',round(c)) Enter fullscreen mod...
Streamlining Asynchronous Tasks in Django with Django Tasks Scheduler
Streamlining Asynchronous Tasks in Django with Django Tasks Scheduler,In today's digital age, managing tasks efficiently is crucial for any web application's success. While Django ...
Brief intro on Celery
Brief intro on Celery, What is celery? Celery is an asynchronous task queue/job queue based on distributed message passing. It is focused on real-time operation but supports schedu...
5 Tasks That would be fun To Script with Python
5 Tasks That would be fun To Script with Python, This is so cliché sounding but the sky really is the limit when it comes to scripting tasks. The feeling of watching the compute...