Robo Space Exploration (Assignment)
# Week1 Assignment - Robo Space Exploration by #SSRBot
# Only stargazing part is covered here
def main()
# Start stargazing
print("stargazing begins")
ProjectStars()
Stargaze()
ChartPlanets()
ExploreAndromeda()
print("stargazing ends")
# Stars are projected to screen in the sky using cymatics patterns (or narrative fractals)
# Cymatics is produced by playing music listed in Sushant fav. songs (= dreams) favourite playlists
# Sushant had fused Star Master projector with Cymatics Bowl so that cymaticas patterns are projected
def ProjectStars()
# Define Star Master projector operations
projection_steps ['fillwater', 'switchonprojector', 'playmusic']
for step in projection_steps
print("performing", step, "step")
# #SSRDream-14/150.🎶 Stargaze at Roswell & Watch ancient alien theory
# Roswell is known for alien activities
# incomplete
def Stargaze(stars)
# Define stargazing procedure
for star in stars
polarity = SpectroAnalyze(star)
print("gazing", star, "star of" polarity, "polarity")
# Spectroanalysis is done to identify colours.
# Stars with single colour are monopolar & two colours are bipolar
# bipolar stars have dual behaviours like photons found through double-slit experiment
def SpectroAnalyze()
spectro_steps ['switchon', 'turntostar', 'checkspectrun']
for step in spectro_steps
print("performing", step, "step")
# #SSRDream-59/150.❤️ *(8/50) Chart trajectories of Moon, Mars, Jupiter & Saturn for a week
def ChartPlanets()
# Define charting procedure
# preparing chart with cicular & radial lines
# drawcc = draw concentric circles
# drawrl = drawradiallines
chart ['fixpaper', 'drawcc', 'drawrl' 'labelcordinates', 'drawconstellations']
for step in chart
print("performing", step, "step")
# drawing planet locations for each day of week
days ['sunday', 'monday', 'tuesday', 'wednesaday', 'thursday', 'friday', 'saturday']
planets ['moon', 'mars', 'jupiter', 'saturn']
for day in days
for planet in planets
print("printing location of", planet, "for", day)
# #SSRDream-74/150.🎶 *(30/50) Explore Andromeda with a Powerful Telescope
def ExploreAndromeda()
# Define exploring Andromeda procedure
# incomplete
Comments
Post a Comment