tasks共7篇
Python Weekend Tasks-拾光赋

Python Weekend Tasks

Python Weekend Tasks,Task:1 Consider you have many photos in a folder. Check their Properties. In Properties, you have created date. Move all photos which have specific Created Dat...
kity的头像-拾光赋kity1个月前
0495
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的头像-拾光赋kity4个月前
0486
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的头像-拾光赋kity4个月前
04115
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的头像-拾光赋kity4个月前
03213
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的头像-拾光赋kity1年前
03410
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年前
03411
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年前
02313