Posts by Kirito Swd • 13 points
3 posts
-
-1
votes1
answer62
viewsQ: What is the best way to manipulate schedules using python 3?
I have a college job to do, where I will need to create a python code that allows the user to schedule schedules for use of the institution’s rooms, but I do not know a functional way of…
python-3.xasked Kirito Swd 13 -
1
votes1
answer376
viewsQ: How to break line inside python dictionaries?
socios = {} def cadastro(): addSocio = input("Digite o nome do sócio que deseja cadastrar: ") telefoneSocio = int(input("Digite o número de telefone do sócio (DDD + NÚMERO): ")) cpfSocio =…
-
-1
votes1
answer2798
viewsQ: How to make multiple prints in the same line in python 3?
I want to know how to make prints to be shown in the same line using python 3. Example: print('1') print('2') 1 2 I wanted when python was going to print number 2, number one was erased and 2…