Skip to content

Commit 85d842e

Browse files
committed
Change only the format but not the function
... to let them pass the Python lint.
1 parent c0ca74d commit 85d842e

16 files changed

+70
-68
lines changed

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,12 +11,12 @@
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

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

2222
# pip install pyttsx3
@@ -63,7 +63,7 @@ def voice(p):
6363

6464

6565
# Run Application with Voice Command Function
66-
only_jarvis
66+
# only_jarvis
6767
class Jarvis:
6868
def __init__(self, Q):
6969
self.query = Q
@@ -110,9 +110,9 @@ def get_app(self):
110110
print(task)
111111
return
112112

113-
=======
113+
# =======
114114
def get_app(Q):
115-
master
115+
# master
116116
if Q == "time":
117117
print(datetime.now())
118118
x=datetime.now()
@@ -131,7 +131,7 @@ def get_app(Q):
131131
subprocess.call(['cmd.exe'])
132132
elif Q == "browser":
133133
subprocess.call(['C:\Program Files\Internet Explorer\iexplore.exe'])
134-
patch-1
134+
# patch-1
135135
elif Q == "open youtube":
136136
webbrowser.open("https://www.youtube.com/") # open youtube
137137
elif Q == "open google":
@@ -151,27 +151,27 @@ def get_app(Q):
151151
except Exception as e:
152152
print(e)
153153
speak("Sorray i am not send this mail")
154-
=======
155-
master
156-
elif Q=="Take screenshot"
154+
# =======
155+
# master
156+
elif Q=="Take screenshot":
157157
snapshot=ImageGrab.grab()
158-
drive_letter = "C:\\"
159-
folder_name = r'downloaded-files'
160-
folder_time = datetime.datetime.now().strftime("%Y-%m-%d_%I-%M-%S_%p")
161-
extention = '.jpg'
162-
folder_to_save_files = drive_letter + folder_name + folder_time + extention
163-
snapshot.save(folder_to_save_files)
158+
drive_letter = "C:\\"
159+
folder_name = r'downloaded-files'
160+
folder_time = datetime.datetime.now().strftime("%Y-%m-%d_%I-%M-%S_%p")
161+
extention = '.jpg'
162+
folder_to_save_files = drive_letter + folder_name + folder_time + extention
163+
snapshot.save(folder_to_save_files)
164164

165165
elif Q=="Jokes":
166166
print(pyjokes.get_joke())
167167

168-
master
168+
# master
169169
else:
170170
engine.say("Sorry Try Again")
171171
engine.runAndWait()
172172

173-
=======
174-
=======
173+
# =======
174+
# =======
175175

176176
apps = {
177177
"time": datetime.now(),
@@ -183,17 +183,17 @@ def get_app(Q):
183183
"cmd": "cmd.exe",
184184
"browser": "C:\Program Files\Internet Explorer\iexplore.exe"
185185
}
186-
master
186+
# master
187187

188188
for app in apps:
189189
if app == Q.lower():
190190
subprocess.call([apps[app]])
191191
break
192-
master
192+
# master
193193
else:
194194
engine.say("Sorry Try Again")
195195
engine.runAndWait()
196-
master
196+
# master
197197
return
198198
# Call get_app(Query) Func.
199199
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

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():

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

json_to_table.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import json
22
import pandas as pd
3-
//jsondata is a collection of data in json format
3+
# //jsondata is a collection of data in json format
44

5-
//Used panndas dataframe to convert json data to dataframes table
5+
# //Used panndas dataframe to convert json data to dataframes table
66
jdata = json.loads(jsondata)
77
df = pd.DataFrame(jdata)
8-
//print(df.T)
8+
# //print(df.T)

news_articles__scraper.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
from newspaper import Article
2020
import pickle
2121
import re
22+
import sys
2223

2324
# Extracting links for all the pages (1 to 158) of boomlive fake news section
2425
fakearticle_links = []

pygame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
author-slayking1965
1+
# author-slayking1965
22
"""
33
This is a game very similar to stone paper scissor
44
In this game :

0 commit comments

Comments
 (0)