This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="progress" style="height: 20px;"> | |
<div class="progress-bar progress-bar-stripped" role="progressbar" | |
aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 50%"> | |
<span>30%</span> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<? foreach ($uuids as $uuid): ?> | |
<div class="col-md-4"> | |
<? component("sigpark.php", $uuid); ?> | |
</div> | |
<? endforeach; ?> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author: Vitor | |
word = input("Enter your word: ") | |
if word == word[::-1] or len(word) < 2: | |
print("Your word IS a palindrome") | |
else: | |
print("Your word IS NOT a palindrome") |
NewerOlder