Created
March 24, 2017 11:17
-
-
Save felipessalvatore/1af5906ae8cb7de9d2978723b649bab5 to your computer and use it in GitHub Desktop.
This is one of my first programs
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
x = float(input('Digite um número qualquer (positivo ou negativo): ')) | |
y = str(input('Digite um substantivo precedido de seu artigo definido: ')) | |
z = str(input('Digite um predicado que concorde em número e gênero com o substantivo: ')) | |
if x > 0: | |
w = "Na sociedade dominada pela indústria cultural, " | |
k = "instante único" | |
u = " em si" | |
l = " Benjamin " | |
elif x < 0: | |
w = "No mundo reificado, " | |
k = "espaço abstrato" | |
u = ", apontando para fora de si," | |
l = " Marx " | |
else: | |
w = "No capitalismo tardio, " | |
k = "momento histórico" | |
u = " em si" | |
l = " meu colega Horkheimer " | |
print(w + y + u + " pode apenas ser " + z + " no " + k + " em que se revela como não-" + z +". " + "Isso é óbvio desde os escritos de" + l) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment