Multibuzo93
banner
fmt03.bsky.social
Multibuzo93
@fmt03.bsky.social
Just a Spaniard developing coding skills
Using a mix of Pandas and Turtle, created a "Guess the State" game. And, upon exit, a csv will be created with all of the states that haven't been call upon by the user. Good way to practise the memory!
August 10, 2025 at 12:51 PM
Code Update for the Snake Game "Scoreboard" class
August 4, 2025 at 1:53 PM
July 6, 2025 at 3:51 PM
A good example:
try:
age=int(input("...."))
except ValueError # type of error we're excluding, as an if statement
print("You have given the wrong data. Try again")
age=int(input("...."))
If an user is tipping a string, it will give a prompt to ask for the right data once again
March 18, 2025 at 4:49 PM
def turn_right():
turn_left()
turn_left()
turn_left()
def jump():
if wall_on_right():
if wall_in_front():
turn_left()
elif front_is_clear():
move()
elif right_is_clear():
turn_right()
move()
while not at_goal():
jump()
February 25, 2025 at 8:58 PM
For personal feedback.
To make it a string:

password_string = ""
for string in password:
password_string+=string
print(password_string)

And that should make the code a string rather than a list.
February 23, 2025 at 7:39 PM