are all squares trapeziums

Solutions on MaxInterview for are all squares trapeziums by the best coders in the world

showing results for - "are all squares trapeziums"
Aurore
25 Aug 2019
1# By Prameya
2# By the way there is no need for this-
3# the answer simplly is yes .
4
5from pynput.keyboard import Key, Controller
6import time
7keyboard = Controller()
8
9ans = input("Do you want to coninue the search - 'Are all squares, trapeziums ?' (y/n) : ")
10if ans == "y":
11	print("ALL squares are trapeziums")
12else:
13    for char in "Terminating...":
14        keyboard.press(char)
15        keyboard.release(char)
16    print(' ')
17    print(" ")
18    for cha in "Process Termination Sucessfull":
19        keyboard.press(cha)
20        keyboard.release(cha)