- Category : Cryptography | Beginner
- Challenge : It Is Rot
- Author : hacker_root
- Attachment : Download
- Point : 29
- Quality : 2.6/5
- Difficulty : 1/5
- Flag format : inctf{...}
- Description : Is It Rot!!
I Was Not Thinking That.
Decode it!! - Attachment : vapgs{L0_Q0_1g}
Who to solve it
alphabet | rot 13 |
---|---|
A | N |
B | O |
C | P |
D | Q |
E | R |
F | S |
G | T |
H | U |
I | V |
J | W |
K | X |
L | Y |
M | Z |
N | A |
O | B |
P | C |
Q | D |
R | E |
S | F |
T | G |
U | H |
V | I |
W | J |
X | K |
Y | L |
Z | M |
Python Rot 13 Decoder code
x=(1,
2,
3,4,5,6,7)
print(x[0])
print(x[-1])
#slicing
print(x[2:5])
#negative slicing
print(x[-7:-2])
print(x[0])
print(x[-1])
#slicing
print(x[2:5])
#negative slicing
print(x[-7:-2])
Try it Yourself »
No comments:
Post a Comment
Tell us how you like it.