Answer:
Language programming Web's programming language
Explanation:
Answer:
def is_reverse(lst1, lst2):
lst2 = lst2[::-1]
if lst1 == lst2:
return True
else:
return False
Explanation:
Create a function called is_reverse that takes two parameters, lst1 and lst2
Reverse the second list using slicing
Check if the first list and the second list are equal to each other. If they are, return True. Otherwise, return False
Answer:
You needn't be on Github. You just need to have the software, like visual code installed on your computer.
If you've got all these things sorted, then you'll be able to make apps without github.