Posts by Schilive • 111 points
3 posts
-
-2
votes2
answers638
viewsA: While inside other While in Java
while (criteiro){ int a = 1; if (a == 0){ break; } while (a != 0){ a++; if (a == 100){ a = 0; } } }
-
1
votes3
answers2049
viewsQ: How to start full screen window with Tkinter?
from caixaimport import * # Variables # Tkinter Variables win_width, win_height = 1280, 1024 windows = Tk() # start a variable Tk windows.geometry(f'{win_width}x{win_height}') windows.title('SCH…
-
-6
votes1
answer79
viewsQ: line 17, in <module> print(f'{a[str(x)]}: {str(n)[r-c]}')
# variaveis a = {'0': 'Milhar', '1': 'Centena', '2': 'Dezena', '3': 'Unidade'} x = int(0) # Variaveis while True: n = str(input('Digit a number: ')) if n.isnumeric(): n = int(n) break else:…