Posts by Walter Avelino • 26 points
2 posts
-
0
votes5
answers2318
viewsA: Error importing pygame into Pycharm
Simionato, try downloading pygame on: https://pypi.python.org/pypi/pygame Select the option pygame-1.9.3-cp35-cp35m-Win32. whl In the Python installation folder (C: Users Seuusuario Appdata Local…
-
1
votes1
answer466
viewsA: How to make a sequence dates in python?
Márcio, see if this is what you need. import pandas as pd import datetime dRan = pd.date_range(start ='2018-01-01', end ='2020-01-11', periods = 13) res = dRan.strftime('%d/%m/%Y') print(res)…