Commit f3e61c00 authored by Adam Blank's avatar Adam Blank
Browse files

Add new file

parent 32f86727
No related merge requests found
Showing with 36 additions and 0 deletions
+36 -0
##############
s = "Adam"
# s[0] = "a"
lst = ["", "", "", ""]
lst[0] = True
def philippe(animal):
return "dragon"
animal1 = "capybara"
animal1 = philippe(animal1)
print(animal1)
def arethey(animal1):
animal1 = "dragon"
def philippe(x):
return "dragon"
def dogsarebetter(animal):
animal = "robot"
animal = philippe(animal)
return animal
animal1 = "capybara"
animal1 = dogsarebetter(animal1)
print(animal1)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment