Posts

Showing posts from October 7, 2022

New Post

Intelligent Traffic Management Using || AI & Metaheuristics || ~xRay Pixy

Image
Hybrid Artificial Intelligence and Metaheuristics for Smart City TRafci Management Problem Video Chapters: 00:00 Introduction 00:40 Smart Cities 01:14 Traditional Methods for Traffic Management 02:12 Hybrid Approach AI and Metaheuristics 02:47 STEPS for Hybrid  Traffic Management System 08:40 Advantages of Smart Traffic Management System 09:33 Conclusion

Python Turtle Graphics || Flower Design 0 6|| ~xRay Pixy

Image
Python Turtle Graphics || Flower Design 0 6|| SOURCE CODE from turtle import Turtle r = Turtle() r.screen.bgcolor('black') color = ['red','lime','yellow'] r.screen.tracer(0,0) for x in range(150):     r.circle(x)     r.color(color[x%3])     r.left(60) r.screen.exitonclick() r.screen.mainloop() OUTPUT
More posts