Posts

Showing posts from October 9, 2022

New Post

Algorithms Behind Space Missions ~xRay Pixy

Image
Learn different algorithms used in Space Missions. Video Link Video Chapters: Algorithms Behind Space Missions 00:00 Introduction 00:52 Space Missions 04:26 Space Missions Challenges 07:04 Algorithms Used in Space Missions 10:36 Optimization Techniques 11:44 Conclusion  NASA conducts space missions to explore the universe for various scientific, technological, and practical reasons: Understanding Our Place in the Universe Search for Life Beyond Earth Studying Earth from Space Advancing Technology Supporting Human Exploration Resource Utilization Inspiring Humanity Examples of NASA Space Missions Apollo Program: Sent humans to the Moon (1969–1972). Mars Rovers (Spirit, Opportunity, Perseverance): Explored Mars' surface and geology. Voyager Missions: Studied the outer planets and interstellar space. Hubble Space Telescope: Captured breathtaking images of the universe. International Space Station (ISS): Supports research in microgravity and international collaboration. Different ...

TURTLE GRAPHICS USING PYTHON || Turtle Star || 08 || ~xRay Pixy

Image
TURTLE GRAPHICS USING PYTHON || Turtle Star || 08 ||  STEPS Python Turtle Graphics Design First Import Turtle Here, variable r is considered a Turtle. Set Turtle Speed. Set Line Width. Set Background Color as while.  Select Colors for the Design. Create a List of Colors. For Loop Initialization. Access Colors from the List inside Loop. Set Direction for Turtle. SOURCE CODE import turtle r = turtle.Turtle() r = turtle.Pen() r.speed(1000) r.width(2) turtle.bgcolor('white') c = ['blue','lime','red','black','gold','aqua','purple','silver'] for x in range (600):     r.pencolor(c[x%8])     r.forward(x)     r.right(160) r.done() OUTPUT
More posts