Skip to content

Commit cdd8ebb

Browse files
Merge pull request #1154 from LinjianLi/master
The admin should really check the code before merging
2 parents d58e3e3 + 85d842e commit cdd8ebb

File tree

22 files changed

+167
-196
lines changed

22 files changed

+167
-196
lines changed

# Solve the quadratic equation ax**2 + bx + c = 0

-14
This file was deleted.

# Solve the quadratic equation ax**2 + bx + c = 0 # import complex math module import cmath a = 1 b = 5 c = 6 # calculate the discriminant d = (b**2) - (4*a*c) # find two solutions sol1 = (-b-cmath.sqrt(d))/(2*a) sol2 = (-b+cmath.sqrt(d))/Python Program to Solve Quadratic Equation

-17
This file was deleted.

A solution to project euler problem 3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"""
88

99

10-
def solution(n: int) -> int:
10+
# def solution(n: int) -> int:
1111
def solution(n: int = 600851475143) -> int:
1212
"""Returns the largest prime factor of a given number n.
1313
>>> solution(13195)

BlackJack_game/blackjack.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
master
1+
# master
22
# BLACK JACK - CASINO A GAME OF FORTUNE!!!
33
import time
44

55
# BLACK JACK - CASINO
66
# PYTHON CODE BASE
77

88

9-
master
9+
# master
1010
import random
1111

1212
deck = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10, 11] * 4

Decimal_To_Binary.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
patch-2
2+
# patch-255
33
decimal_accuracy = 7
44

55
def dtbconverter(num):
@@ -40,6 +40,7 @@ def dtbconverter(num):
4040

4141

4242
#i think this code have not proper comment and noe this is easy to understand
43+
'''
4344
=======
4445
Program: Decimal to Binary converter.
4546
@@ -62,4 +63,4 @@ def DecimalToBinary(num):
6263

6364
# Calling function
6465
DecimalToBinary(dec_val)
65-
master
66+
# master

JARVIS/JARVIS.py

+22-22
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
# import modules
1212
from datetime import datetime # datetime module supplies classes for manipulating dates and times
1313
import subprocess # subprocess module allows you to spawn new processes
14-
master
14+
# master
1515
import pyjokes
1616
import requests
1717
import json
1818

19-
=======
19+
# =======
2020
from playsound import * #for sound output
21-
master
21+
# master
2222
import speech_recognition as sr # speech_recognition Library for performing speech recognition with support for Google Speech Recognition, etc..
2323

2424
# pip install pyttsx3
@@ -79,7 +79,7 @@ def voice(p):
7979

8080

8181
# Run Application with Voice Command Function
82-
only_jarvis
82+
# only_jarvis
8383
class Jarvis:
8484
def __init__(self, Q):
8585
self.query = Q
@@ -126,9 +126,9 @@ def get_app(self):
126126
print(task)
127127
return
128128

129-
=======
129+
# =======
130130
def get_app(Q):
131-
master
131+
# master
132132
if Q == "time":
133133
print(datetime.now())
134134
x=datetime.now()
@@ -150,7 +150,7 @@ def get_app(Q):
150150
subprocess.call(['cmd.exe'])
151151
elif Q == "browser":
152152
subprocess.call(['C:\Program Files\Internet Explorer\iexplore.exe'])
153-
patch-1
153+
# patch-1
154154
elif Q == "open youtube":
155155
webbrowser.open("https://www.youtube.com/") # open youtube
156156
elif Q == "open google":
@@ -170,27 +170,27 @@ def get_app(Q):
170170
except Exception as e:
171171
print(e)
172172
speak("Sorray i am not send this mail")
173-
=======
174-
master
175-
elif Q=="Take screenshot"
173+
# =======
174+
# master
175+
elif Q=="Take screenshot":
176176
snapshot=ImageGrab.grab()
177-
drive_letter = "C:\\"
178-
folder_name = r'downloaded-files'
179-
folder_time = datetime.datetime.now().strftime("%Y-%m-%d_%I-%M-%S_%p")
180-
extention = '.jpg'
181-
folder_to_save_files = drive_letter + folder_name + folder_time + extention
182-
snapshot.save(folder_to_save_files)
177+
drive_letter = "C:\\"
178+
folder_name = r'downloaded-files'
179+
folder_time = datetime.datetime.now().strftime("%Y-%m-%d_%I-%M-%S_%p")
180+
extention = '.jpg'
181+
folder_to_save_files = drive_letter + folder_name + folder_time + extention
182+
snapshot.save(folder_to_save_files)
183183

184184
elif Q=="Jokes":
185185
print(pyjokes.get_joke())
186186

187-
master
187+
# master
188188
else:
189189
engine.say("Sorry Try Again")
190190
engine.runAndWait()
191191

192-
=======
193-
=======
192+
# =======
193+
# =======
194194

195195
apps = {
196196
"time": datetime.now(),
@@ -202,17 +202,17 @@ def get_app(Q):
202202
"cmd": "cmd.exe",
203203
"browser": "C:\Program Files\Internet Explorer\iexplore.exe"
204204
}
205-
master
205+
# master
206206

207207
for app in apps:
208208
if app == Q.lower():
209209
subprocess.call([apps[app]])
210210
break
211-
master
211+
# master
212212
else:
213213
engine.say("Sorry Try Again")
214214
engine.runAndWait()
215-
master
215+
# master
216216
return
217217
# Call get_app(Query) Func.
218218
Jarvis(Query).get_app

Password Generator/pass_gen.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def gen_password(sequence, passlength=8):
1919
password = ''.join((secrets.choice(sequence) for i in range(passlength)))
2020
return password
2121

22-
class Interface():
22+
class Interface():
2323
has_characters={
2424
"lowercase":True,
2525
"uppercase":True,

Print_List_of_Odd_Numbers.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
master
1+
# master
22
#Another best method to do this
33

44
n=map(list(int,input().split()))
@@ -9,7 +9,7 @@
99
# CALCULATE NUMBER OF ODD NUMBERS
1010

1111
# CALCULATE NUMBER OF ODD NUMBERS WITHIN A GIVEN LIMIT
12-
master
12+
# master
1313

1414
n = int(input("Enter the limit : ")) # user input
1515

File renamed without changes.

Quick_Sort.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ def quickSort(arr, low, high):
2222
print("Initial array is:", arr)
2323
n = len(arr)
2424
quickSort(arr, 0, n - 1)
25-
patch-1
26-
print("Sorted array is:", arr)
27-
=======
25+
# patch-1
26+
# print("Sorted array is:", arr)
27+
# =======
2828
print("Sorted array is:")
29-
patch-4
30-
for i in range(0,n):
31-
=======
29+
# patch-4
30+
# for i in range(0,n):
31+
# =======
3232
for i in range(0,len(arr)):
33-
master
33+
# master
3434
print(arr[i],end=" ")
3535

3636
#your code is best but now it is easy to understand
37-
master
37+
# master

SimpleCalculator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def divide(a, b):
1414
except ZeroDivisionError:
1515
return "Zero Division Error"
1616

17-
def power(a,b):
17+
def power(a,b):
1818
return a**b
1919

2020
def main():

Strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
String1 = 'Welcome to Malya's World'
1+
String1 = 'Welcome to Malya\'s World'
22
print("String with the use of Single Quotes: ")
33
print(String1)
44

To print series 1,12,123,1234......py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
master
1+
# master
22
def num(a):
33

44
# initialising starting number
@@ -36,7 +36,7 @@ def num(a):
3636
a = 5
3737

3838
num(a)
39-
=======
39+
# =======
4040
# 1-12-123-1234 Pattern up to n lines
4141

4242
n = int(input("Enter number of rows: "))
@@ -46,4 +46,4 @@ def num(a):
4646
print(j, end="")
4747
print()
4848

49-
master
49+
# master

aj.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ def Repeat(x):
77
if x[i] == x[j] and x[i] not in repeated:
88
repeated.append(x[i])
99
return repeated
10-
ist1 = [10, 20, 30, 20, 20, 30, 40,
10+
list1 = [10, 20, 30, 20, 20, 30, 40,
1111
50, -20, 60, 60, -20, -20]
12-
print (Repeat(list1))
12+
print(Repeat(list1))

binod.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
patch-1
1+
# patch-1
22
import os #The OS module in python provides functions for interacting with the operating system
33

4-
patch-3
4+
# patch-3
55
# function to check if 'binod' is present in the file.
6-
def checkBinod(file):
7-
=======
6+
# def checkBinod(file):
7+
# =======
88

9-
def checkBinod(file): #this function will check there is any 'Binod' text in file or not
10-
with open(file, "r") as f: #we are opening file in read mode and using 'with' so need to take care of close()
11-
=======
9+
# def checkBinod(file): #this function will check there is any 'Binod' text in file or not
10+
# with open(file, "r") as f: #we are opening file in read mode and using 'with' so need to take care of close()
11+
# =======
1212
import time
1313
import os
1414
#Importing our Bindoer
1515
print("To Kaise Hai Ap Log!")
1616
time.sleep(1)
1717
print("Chaliye Binod Karte Hai!")
1818
def checkBinod(file):#Trying to find Binod In File Insted Of Manohar Ka Kotha
19-
master
19+
# master
2020
with open(file, "r") as f:
21-
master
21+
# master
2222
fileContent = f.read()
2323
if 'binod' in fileContent.lower():
2424
print(

Digital Clock/digital_clock.py digital_clock.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
master
1+
# master
22
# importing whole module
33
# use Tkinter to show a digital clock
44
# using python code base
55

66
import time
77
#because we need digital clock , so we are importing the time library.
8-
master
8+
# master
99
from tkinter import *
1010
from tkinter.ttk import *
1111

@@ -17,11 +17,11 @@
1717
root = Tk()
1818
root.title('Clock')
1919

20-
master
20+
# master
2121

2222
# This function is used to
2323
# display time on the label
24-
def time():
24+
def def_time():
2525
string = strftime('%H:%M:%S %p')
2626
lbl.config(text = string)
2727
lbl.after(1000, time)
@@ -35,10 +35,10 @@ def time():
3535
# Placing clock at the centre
3636
# of the tkinter window
3737
lbl.pack(anchor = 'center')
38-
time()
38+
def_time()
3939

4040
mainloop()
41-
=======
41+
# =======
4242
label = Label(root, font=("Arial", 30, 'bold'), bg="black", fg="white", bd =30)
4343
label.grid(row =0, column=1)
4444

@@ -63,4 +63,4 @@ def dig_clock():
6363
dig_clock()
6464

6565
root.mainloop()
66-
master
66+
# master

helloworld.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
master
1+
# master
22
# This program prints Hello, world!
33

44
import time
@@ -11,7 +11,7 @@
1111
time.sleep(1)
1212
print("Here We Go!")
1313
time.sleep(1)
14-
master
14+
# master
1515
print("Hello World!")
1616
time.sleep(1)
1717
print("A Quick Tip!")
@@ -21,11 +21,11 @@
2121
# in c -> printf("Hello World!");
2222
# in java -> System.out.println("Hello World!");
2323
# in c++ -> cout << "Hello World";
24-
master
24+
# master
2525
# in javascript - > console.log("Hello World");
2626

2727
# in javascript - > console.log("Hello World") or document.write("Hello World!")
2828
time.sleep(2)
2929
print("All The Best!")
3030
#Adios!
31-
master
31+
# master

0 commit comments

Comments
 (0)