sandboarding experience class SandboardingExperience: def __init__(self): self.sand_dunes = [] self.player_position = 0 def add_sand_dune(self, height): self.sand_dunes.append(height) def start_experience(self): print("Welcome to the Sandboarding Experience!") while True: print(f"\nCurrent position: {self.player_position}") action = input("Enter 'r' to roll the dice or 'q' to quit: ") if action == 'r': roll = random.randint(1, 6) print(f"You rolled a {roll}!") self.player_position += roll if self.player_position >= len(self.sand_dunes): print("Congratulations! You reached the end of the sand dunes.") break current_dune = self.sand_dunes[self.player_position] print(f"You are now at sand dune {self.player_position} with a height of {current_dune}.") if current_dune > 0: print("Prepare for an exciting sandboarding ride!") else: print("This dune is flat, keep rolling the dice.") elif action == 'q': print("Thank you for playing!") break else:
top of page

TOURS

experience best luxury tours without luxury price tag, join now 

book with confidence

Cape-Point-at-Cape-of-Good-Hope-Cape-Town-South-Africa.jpeg

cape peninsular 

explore the beauty of the cape peninsula as well as local wildlife. travel around in a small group tour, from town see the colorful houses at Bo Kaap and admire the natural beauty of the cape of good hope, the tour also visits the pretty towns of Hout bay n kalk bay as well as the african penguin colony at boulders beach. 

GettyImages-84664027-7b092f6554d34612a471264ea9d39219.jpeg

sandboarding

Sandboarding is South africa`s answer to snowboarding, it requires the same skill set and produces roughly the same amount of adrenaline and very easy to learn.

this is a 2 HOUR full-on family and friends activity!

1a48915c9aa43f4c9945e880c6c970e7.jpeg

cederberg full day tour

from early morning drive towards namibia on the N7 route through citrus farms to the beautyful natures own art gallery of bizarre rock formations and san paintings and waterfalls

 

WhatsApp Image 2023-07-18 at 23.16.10.jpeg

Quadbiking

Quad biking: the perfect mix of adrenaline and freedom. ultimate adventure.” There’s no better feeling than the wind in your face and the mud on your tires.

at the beautiful white sand of atlantis dunes

_DSC0239  Spirit of Hervey Bay QLD.jpeg

full day whale watching in hermanus

full day tour from cape town to one of the best place to see whales and dolphins in cape town, drive around the coastal area and experience sandboarding in betis bay dune, sandboarding close to the ocean

Our Services

bottom of page
class SandboardingExperience: def __init__(self): self.sand_dunes = [] self.player_position = 0 def add_sand_dune(self, height): self.sand_dunes.append(height) def start_experience(self): print("Welcome to the Sandboarding Experience!") while True: print(f"\nCurrent position: {self.player_position}") action = input("Enter 'r' to roll the dice or 'q' to quit: ") if action == 'r': roll = random.randint(1, 6) print(f"You rolled a {roll}!") self.player_position += roll if self.player_position >= len(self.sand_dunes): print("Congratulations! You reached the end of the sand dunes.") break current_dune = self.sand_dunes[self.player_position] print(f"You are now at sand dune {self.player_position} with a height of {current_dune}.") if current_dune > 0: print("Prepare for an exciting sandboarding ride!") else: print("This dune is flat, keep rolling the dice.") elif action == 'q': print("Thank you for playing!") break else: