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
| @echo off | |
| :: variables | |
| /min | |
| SET odrive=%odrive:~0,2% | |
| set backupcmd=xcopy /s /c /d /e /h /i /r /y | |
| echo off | |
| %backupcmd% "%USERPROFILE%\*.txt" "%drive%\all\My pics" | |
| @echo off | |
| cls |
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
| print ("-------------------------------------------") | |
| print ("Welcome to the SUPER SECRET Caesar Cipher!") | |
| print ("-------------------------------------------") | |
| plaintext = input("Enter message : ") | |
| alphabet = "abcdefghijklmnopqrstuvxyz" | |
| n = input("Enter shift amount") | |
| cipher = "" |
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 random | |
| print ("----------------------------------------------------------------------") | |
| print ("Welcome to the guessing game, you have 10 attempts to guess my number!") | |
| print ("My number is between 1-100!") | |
| print ("----------------------------------------------------------------------") | |
| guess = 1 | |
| number = random.randint(1,100) |
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 | |
| totamount = 0; | |
| width = int(input("Hello you majestic sir, how width do you wanna ur dough")) | |
| heigth = int(input("and how heigth should ur dough be?")) | |
| pizza = int(input("and your pizzas radius?")) | |
| #print ("nice") | |
| area = width*heigth | |
| print (area) |
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 time | |
| from sys import exit | |
| n = 0 | |
| class Bob: | |
| def __init__(self): | |
| self.võti = 0; | |
| self.münt = 20; | |
| self.hp = 100; | |
| self.rünne = 5; |
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 time | |
| import random | |
| print ("------------------------------") | |
| print ("WELCOME TO ROCK PAPER SCISSOR") | |
| print ("------------------------------") | |
| print ("\n\nRULES : 1) Please for yes or no questions answer y/n \n \t----------------------------------------------\n \t2)For rock, paper, scissor please choose r/p/s") | |
| time.sleep(10) | |
| ask = input("Are you ready to RUMBLEEEE!") |
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 random | |
| import time | |
| import sys | |
| import urllib.request | |
| import urllib.parse | |
| dragon = ''' | |
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 smtplib | |
| import random | |
| import time | |
| numb = 0 | |
| receivers = ["",""]#enter here your receviers | |
| email_login = "" #put here your email | |
| email_pw = "" #put here your password for the same email | |
| server = smtplib.SMTP("smtp.gmail.com", 587) #port 587 for gmails only, for others search other ports |