diff --git a/fugindo-com-python-2.html b/fugindo-com-python-2.html index 7f7a572..b0da75a 100644 --- a/fugindo-com-python-2.html +++ b/fugindo-com-python-2.html @@ -64,7 +64,7 @@
print(PASSPHRASE.format(*consonants).capitalize())
+
+
Bem vindo Júlio!
+
+
'fujam para as colinas'
+
+
+
+CONSONANTS = ['f', 'j', 'c', 'l', 'n']
+PASSPHRASE = '{}u{}am para as {}o{}i{}as'
+PASSPHRASE.format(*CONSONANTS)
+
+
+
+'fujam para as colinas'
+
+
+
+
+'fujam para as colinas'.capitalize()
+
+
+
+Fujam para as colinas
+
+
+
+
+def totally_random():
+ """Run a totally random way."""
+ random.shuffle(CONSONANTS)
+ print_phrase(CONSONANTS)
+
+
+
+
+def switch_two():
+ """Run by changing two steps at a time."""
+ first = random.randint(0, 1)
+ second = random.randint(2, 4)
+
+
+
+
+ CONSONANTS[second], CONSONANTS[first] = \
+ CONSONANTS[first], CONSONANTS[second]
+
+
+# CONSONANTS = ['f', 'j', 'c', 'l', 'n']
+# second = random.randint(2, 4)
+CONSONANTS[second]
+
+
+
+ + Tuplas são como listas, só que + não podem ser alteradas. +
+ ++ E pra criar uma tupla: +
+ +
+valor, valor
+
+
+ Ou mais bonitinho: (valor, valor)
+primeiro, segundo = [1, 2]
+print(primeiro)
+print(segundo)
+
+
+
+1
+2
+
+
+
+
+ CONSONANTS[second], CONSONANTS[first] = \
+ CONSONANTS[first], CONSONANTS[second]
+
+
+
+tmp = CONSONANTS[first]
+CONSONANTS[first] = CONSONANTS[second]
+CONSONANTS[second] = tmp
+
+
+
+
+if __name__ == "__main__":
+
+
+
+
+ args = ArgumentParser()
+ args.add_argument('-t', '--totally',
+ dest='totally',
+ default=False,
+ action='store_true',
+ help='Like, toootaly random')
+ args.add_argument('-s', '--short',
+ dest='short',
+ default=False,
+ action='store_true',
+ help='Not so random')
+ result = args.parse_args()
+
+
+
+
+ if result.totally:
+ totally_random()
+ elif result.short:
+ switch_two()
+ else:
+ print('Dude, option!')
+
+
+