tasks共6篇
Python Day- 14 Looping-Exercises and tasks-拾光赋

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 = ...
kity的头像-拾光赋kity1个月前
0406
Python - Level : 2 Tasks-拾光赋

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 -...
kity的头像-拾光赋kity1个月前
03715
Python - Level : 1 Tasks-拾光赋

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...
kity的头像-拾光赋kity1个月前
02313
Streamlining Asynchronous Tasks in Django with Django Tasks Scheduler-拾光赋

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 ...
kity的头像-拾光赋kity10个月前
03010
Brief intro on Celery-拾光赋

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...
kity的头像-拾光赋kity5年前
03311
5 Tasks That would be fun To Script with Python-拾光赋

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...
kity的头像-拾光赋kity8年前
02213