Posts by IamZack • 113 points
2 posts
-
1
votes1
answer819
viewsQ: How to set the xticks equal to that figure
I’m taking a course in Python geared towards finance. Then in an exercise you are asked to plot a graph using Dataframes. So far so good, I managed to do everything right, however my xticks do not…
-
-1
votes4
answers685
viewsA: Only put the correct message print once
Man, I’d do this (I’m a beginner too, I don’t know if it’s the best way): cpf = input("CPF(xxx.xxx.xxx-xx) :") #3 7 11 correto = False for letra in cpf: if(cpf[3] !=".") or (cpf[7] !=".") or…