This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /wato | |
| "Proper formatting is "/wato (number for odds) @NAME1 @NAME2" " | |
| /wato ## @NAME1 @NAME2 | |
| ## is the maximum number | |
| "This is the $$ time the program has been used" | |
| "Starting game for 1 in ## odds in 30 seconds." | |
| "Game is between NAME1 and NAME2." | |
| "Please text me your number of choice at ###-###-####" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import math | |
| def main(): | |
| count = 2 | |
| count2 = 1 | |
| while True: | |
| isprime = True | |
| for x in range(2, int(math.sqrt(count) + 1)): | |
| if count % x == 0: | |
| isprime = False |