blob_id
string
repo_name
string
path
string
length_bytes
int64
score
float64
int_score
int64
text
string
is_english
bool
305d22b7d4094bfe69f613bc6a11cac088cd51f0
ShreyasAmbre/python_practice
/IntroToPython/Numpy/Basic Numpy.py
773
4.375
4
# Basic of Numpy, creating array using numpy # numpy is faster then list because it store data in continous manner # array() method is built-in in numpy yo create the numpy object, we can pass any array like object such as # list & tuple import numpy # Basic Numpy Array arr = numpy.array([12, "12", False, "Shreyas", 1...
true
290f44cf617673bc0203df18a99141e36e701a9d
rudrashishbose/PythonBible
/emailSlicer.py
346
4.125
4
# -*- coding: utf-8 -*- """ Created on Wed Jun 24 19:24:24 2020 @author: Desktop """ email_id = input("enter your email id: ") username = email_id[0:email_id.index("@"):1] domain_name = email_id[email_id.index("@")+1:] output = "Your username is {} and your domain name is {}" print(output.for...
true
4a43883591df60bf17aaa26b91aa6fdadf470f6e
safin777/ddad-internship-Safin777
/factorial.py
391
4.21875
4
def factorial(n): factorial=1 if n<0 : print("Factorial does not exits for value less than 0") elif n == 0 : print("The factorial of 0 is 1") elif 0<n<10 : for i in range(1,n+1): factorial=factorial*i print("The factorial of",n,"is",factorial) else: print("The input number is greater than 10") ...
true
48f7a90dfc5a7e933d00ad2b69806418992baf48
jillianhou8/CS61A
/labs/lab01/lab01.py
1,192
4.15625
4
"" "Lab 1: Expressions and Control Structures""" # Coding Practice def repeated(f, n, x): """Returns the result of composing f n times on x. >>> def square(x): ... return x * x ... >>> repeated(square, 2, 3) # square(square(3)), or 3 ** 4 81 >>> repeated(square, 1, 4) # square(4) 16 >>> repeated(squar...
true
2ae557b4da917c5273c5a79b86618bd97805134e
antGulati/number_patterns
/narssistic numbers/narcissistic_number_list_python.py
887
4.28125
4
# program to take a long integer N from the user and print all the narcissistic number between one and the given number # narcissistic numbers are those whose sum of individual digits each raised to the power of the number of digits gives the orignal number import math def digitcount(num): return int(math.log(num,10...
true
488db0e00a310b5c45987ccbdf3171ccb6d875fb
clickykeyboard/SEM-2-OOP
/OOP/Week 08/assignment/employee.py
2,941
4.34375
4
class Employee: def __init__(self, name, id, department, job_title): self.name = name self.id = id self.department = department self.job_title = job_title employee_1 = Employee("Ahmed", "12345", "Management", "Manager") employee_2 = Employee("Abbas", "54321", "Creative Team", "Desi...
true
ef24c44d58052f1cba4008a7449b61fc123da0f1
ARPIT443/Python
/problem6.py
881
4.125
4
option = ''' Select operation you want to perform--->> 1.Show contents of single file : 2.Show contents of multiple file : 3.cat -n command : 4.cat -E command : ''' print(option) choice=input() if choice == '1': fname=input('Name of file :') f=open(fname,'r') print(f.read()) f.close() elif choice == '2': n...
true
9a6cd9211feb8dc010e44af0e55eeecc592bbc1d
Benjamin1118/cs-module-project-recursive-sorting
/src/searching/searching.py
1,160
4.3125
4
# TO-DO: Implement a recursive implementation of binary search def binary_search(arr, target, start, end): # Your code here #find a midpoint start search there #check if start < end first if start > end: return -1 mid = (start + end) // 2 if arr[mid] == target: return mid # c...
true
5a58d0e43b93f4ea82b39b3fb181f89458b5369b
nabepa/coding-test
/Searching/bisect_library.py
549
4.125
4
# Count the number of frequencies of elements whose value is between [left, right] in a sorted array from bisect import bisect_left, bisect_right def count_by_range(array, left_val, right_val): right_idx = bisect_right(array, right_val) left_idx = bisect_left(array, left_val) return right_idx - left_idx ...
true
3a12122d4e65fd58d473244fe50a9de3a1339b27
austinjhunt/dailycodingproblem
/dcp2.py
1,924
4.125
4
#This problem was asked by Uber. #Given an array of integers, return a new array such that each element at index i of the new array is the product of all the numbers in the original array except the one at i. #For example, if our input was [1, 2, 3, 4, 5], the expected output would be [120, 60, 40, 30, 24]. If our in...
true
18e5a15a489628f3c1a1e8d2a6e5b99ce66ddeeb
DrDavxr/email-text-finder
/mainPackage/extension_detector.py
320
4.40625
4
''' This module finds the extension of the file selected by the user. ''' def find_extension(filename): ''' Finds the extension of a given file. input: filename output: file extension ''' filename_list = filename.split('/') extension = filename_list[-1].split('.')[-1] return extension
true
e009fa6b516388eb7018d208ee2325196c7909ba
sonisidhant/CST8333-Python-Project
/calc.py
2,170
4.1875
4
###################### # calc.py # By Sidhant Soni # October 24, 2018 ###################### # Declaring variables and assigning user input a = input('Enter First Number: '); b = input('Enter Second Number: '); print('\n') # Converting user input string to integer firstN = int(a); secondN = int(b); # Making the lis...
true
702f5ca9c7b730ac315b0fc6072e4bee0216824f
decadevs/use-cases-python-oluwasayo01
/instance_methods.py
1,277
4.3125
4
# Document at least 3 use cases of instance methods class User(): def __init__(self, username = None): self.__username = username def setUsername(self, x): self.__username = x def getUsername(self): return(self.__username) Steve = User('steve1') print('Before setting:', Steve.getUsername()) Stev...
true
abad3a169e74dd4e19cbc6877567eb39a0bdb683
AthenaTsai/Python
/python_notes/OOP/class.py
904
4.5625
5
# Class: object-oriented programming, inheritance class Parent: # parent class, class is a structure, start with uppercase def __init__(self, name, age, ht=168): # self tells the function is for which class self.name = name self.age = age self.ht = ht print('this is the parent clas...
true
a48f0730061352526c030c3ac66845e48fd213a8
thelmuth/ProfessorProjectPrograms110
/calculations/pizza.py
1,003
4.25
4
""" ***************************************************************************** FILE: pizza.py AUTHOR: Professors ASSIGNMENT: Calculations DESCRIPTION: Professors' program for Pizza problem. ***************************************************************************** """ import math d...
true
9dd0b3f60eb6ed3e167b001035da7cb07630a480
Jaffacakeee/Python
/Python_Bible/Section 5 - The ABCs/hello_you.py
437
4.125
4
# Ask user for name name = input("What is your name? ") # Ask user for age age = input("What is your age? ") # Ask user for city city = input ("What city do you live in? ") # Ask user for what they love love = input("What do you love? ") # Build the structure of the sentence string = "Your name is {} and you are {}...
true
d3906ba829aecd6d2d665ba33306ebcafcb39f26
Virtual-Uni/Discover-Python
/Exams/15.11.2020/Solutions/Mueem/Exam1/Task6.py
549
4.25
4
""" 6. Task Your code should calculate the average mark of students in a dictionary as key/value pairs. Key represents the name of the student, whereas value represents marks_list from last few exams. """ marks_dictionary = { 'Hasan': [10, 5, 20], 'Sakir': [10, 10, 14], 'Hanif': [20, 15, 10], 'Saiful': [20, 20, 20] } ...
true
119b1ca27fc2a33b201c4f635e37fa8c7d77d4e6
Virtual-Uni/Discover-Python
/Exams/15.11.2020/Solutions/Mueem/Exam1/Task4.py
422
4.3125
4
""" 4. Task Your provided code section should find a meaning of a word from a dictionary containing key/value pairs of word: value. line. """ input_word = input('Enter a word(Passed/Failed/Other) = ') dictionary = {'Passed':'You have practiced at home.', 'Failed': 'You was not serious.', 'Other': 'Write your own meanin...
true
58d38c4e908813e76d824039e7921e3dbfe91bb2
marvin939/projecteuler-python
/problem 9 - special pythagorean triplet/problem9.py
1,347
4.34375
4
''' A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a^2 + b^2 = c^2 For example, 3^2 + 4^2 = 9 + 16 = 25 = 5^2. There exists exactly one Pythagorean triplet for which a + b + c = 1000. Find the product abc. ''' from math import sqrt, floor, ceil a = 1 b = None c = None P = 1000 # Pe...
true
b068813edb18ee50949c41b70ba6047a906ea794
marvin939/projecteuler-python
/problem 1 - multiples of 3 and 5/problem1.py
402
4.25
4
""" If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000. """ x = 1 sum35 = 0 while x < 1000: # below 10 addToSum = False if x % 3 == 0 or x % 5 == 0: sum35 += x ...
true
1855ba6951647a66912cde9b70e1574cef006706
ZryletTC/CMPTGCS-20
/labs/lab02/lab02Funcs.py
2,281
4.1875
4
# lab02Funcs.py Define a few sample functions in Python # T. Pennebaker for CMPTGCS 20, Spring 2016 def perimRect(length,width): """ Compute perimiter of rectangle >>> perimRect(2,3) 10 >>> perimRect(4, 2.5) 13.0 >>> perimRect(3, 3) 12 >>> """ return 2*(length+width) def areaRec...
true
86a7139693f7997f4b0b0018f298bb45fbbd4126
shivapk/Programming-Leetcode
/Python/Trees/checkGraphisaTreecolorsGraphds[n,n].py
2,218
4.21875
4
#say given graph is a valid tree or not.An undirected graph is tree if it has following properties. #1) There is no cycle. #2) The graph is connected. #Time: O(n) where n is the number of vertices..as number of edges will be n-1. #space: O(n) where n is number of vertices # keep track of parent in case of undirected gr...
true
f95f64cfdb3c2aa61700e311d79610d79262d1e8
TheDiegoFrade/python_crash_course_2nd_ed
/input_while_loops.py
1,515
4.125
4
#number = input("Enter a number, and I'll tell you if it's even or odd: ") #number = int(number) #if number % 2 == 0: # print(f"\nThe number {number} is even.") #else: # print(f"\nThe number {number} is odd.") current_number = 1 while current_number <= 5: print(current_number) current_number += 1 #prompt = "...
true
d34f14cf5ffa70b9d4bacf51ef4a41e8c41d533c
TheDiegoFrade/python_crash_course_2nd_ed
/python_poll.py
1,020
4.15625
4
responses = {} # Set a flag to indicate that polling is active. polling_active = True while polling_active: # Prompt for the person's name and response. name = input("\nWhat is your name? ") response = input("Which are your favorite tacos? ") # Store the response in the dictionary. responses['name']...
true
f740acd2ff5d494434ef64d91baed730e754f779
Izydorczak/learn_python
/gdi_buffalo_2015/class2/functions_continued.py
1,899
4.78125
5
""" filename: functions_continued.py author: wendyjan This file shows more about functions. """ def say_hi(): print "Hello World!" def say_hi_personally(person): print "Hello " + person + "!" def add_together(a, b): return a + b def calculate_y(m, x, b): return m * x + b def add_together_many(...
true
c2f2744f17073e94b26f0c01f33dfd4750a65007
shaneapen/LeetCode-Search
/src/utils.py
1,643
4.34375
4
def parse_args(argv): """Parse Alfred Arguments Args: argv: A list of arguments, in which there are only two items, i.e., [mode, {query}]. The 1st item determines the search mode, there are two options: 1) search by `topic` 2) search ...
true
70c91c40394ae59ca2973541bd8a4d73da98b0c3
skilstak/code-dot-org-python
/mymod.py
1,758
4.25
4
"""Example module to contain methods, functions and variables for reuse. This file gets loaded as a module (sometimes also called a library) when you call `import mymod` in your scripts. """ import codestudio class Zombie(codestudio.Artist): """An Artist with a propensity for brains and drawing squares. Wh...
true
081d354575e425e7e2a8f9f32d6729df27b3ca88
Cyansnail/Backup
/PythonLists.py
1,378
4.28125
4
# how to make a list favMovies = ["Star Wars", "Avengers", "LOTR"] # prints the whole list print(favMovies) #prints only one of the items print(favMovies[1]) # to add you can append or insert # append adds to the end favMovies.append("Iron Man 1") print(favMovies) # insert will put the item wherevre you want ...
true
b0a55be05b1fc2e33561b8e676a8e3bd8916e489
Munster2020/HDIP_CSDA
/labs/Topic04-flow/lab04.05-­topthree.py
687
4.1875
4
# This program generates 10 random numbers. # prints them out, then # prints out the top 3 # I will use a list to store and # manipulate the number import random # I programming the general case howMany = 10 topHowMany = 3 rangeFrom = 0 rangeto = 100 numbers = [] for i in range(0,10): numbers.append(random.randi...
true
a1a02e09b242546b8003baf6caff98e293370a50
makthrow/6.00x
/ProblemSet3/ps3_newton.py
2,692
4.34375
4
# 6.00x Problem Set 3 # # Successive Approximation: Newton's Method # # Problem 1: Polynomials def evaluatePoly(poly, x): ''' Computes the value of a polynomial function at given value x. Returns that value as a float. poly: list of numbers, length > 0 x: number returns: float ''' in...
true
b39ca0c3cfb9a13ef5b02d0b8f705e89e9b4971f
makthrow/6.00x
/ProblemSet2/PS2-2.py
1,165
4.21875
4
balance = 4773 annualInterestRate = 0.2 # result code should generate: Lowest Payment: 360 # Variables: # balance - the outstanding balance on the credit card # annualInterestRate - annual interest rate as a decimal # The monthly payment must be a multiple of $10 and is the same for all months # TODO: CALCULATE MONT...
true
ca3e671fd66ef9063da94334696dd8b11ebab69a
yueyueyang/inf1340_2015_asst2
/exercise1.py
1,481
4.125
4
vowels = "aeiou" def pig_latinify(word): """ Main translator function. :param : string from function call :return: word in pig latin :raises: """ # convert string to all lowercase word = word.lower() # if string has numbers -> error if not word.isalpha(): result = "Pl...
true
02272ce4fee1b49d2c7d137bf7d930a18d3b6394
key36ra/m_python
/log/0723_PickleSqlite3/note_sqlite3.py
2,033
4.125
4
import sqlite3 """ Overview """ # Create "connection" obect. conn = sqlite3.connect('example.db') # Create "cursor" onject from "connection" object. c = conn.cursor() # Create table c.execute('''CREATE TABLE stocks (date text, trans text, symbol text, qty real, price real)''') # Insert a row of data c...
true
8bc413580dd92b6ab78befe3ec6cc045b6698cd4
GMcghn/42---Python-Bootcamp-Week1
/day01/ex01/game.py
1,498
4.25
4
class GotCharacter: # https://www.w3schools.com/python/python_inheritance.asp def __init__(self, first_name, is_alive = True): #properties (ne doivent pas forcément être en attributes) self.first_name = first_name self.is_alive = is_alive # Inheritance allows us to define a class that inhe...
true
7cc8e38f5fcd767d522c5289fc2f9e60ecb00e71
Sepp1324/Python---Course
/tut010.py
595
4.53125
5
#!/usr/bin/env python3 # strip() -> Removes Spacings at the beginning and the end of a string # len() -> Returns the length of a String (w/0 \n) # lower() -> Returns the string with all lowercase-letters # upper() -> Returns the string with all uppercase-letters # split() -> Split a string into a list where each wor...
true
4a9bdc08f081dee7c1e469e016eaba575cece2f8
kalpanayadav/shweta
/shweta1.py
776
4.3125
4
def arearectangle(length,breadth): ''' objective: to calculate the area of rectangle input: length and breadth of rectangle ''' # approach: multiply length and breadth area = length*breadth return area def areasquare(side): ''' objective: to calculate the area of square ...
true
0f6fc453225f9495703a7e4118e2e2d3b146860b
MnAkash/Python-programming-exercises
/My solutions/Q21.py
1,248
4.59375
5
''' A robot moves in a plane starting from the origin point (0,0). The robot can move toward UP, DOWN, LEFT and RIGHT with a given steps. The trace of robot movement is shown as the following: UP 5 DOWN 3 LEFT 3 RIGHT 2 The numbers after the direction are steps. Please write a program to compute the distance fr...
true
4074246e3cb5b70bd035663133ce58f9a68a69b8
KaptejnSzyma/pythonexercises
/ifChallenge/ifChallenge.py
233
4.1875
4
name = input("Please enter your name: ") age = int(input("Enter your age: ")) if 18 <= age < 31: # if age <= 18 or age > 31: print("Welcome to holiday, {}".format(name)) else: print("Kindly, fuck off {}".format(name))
true
99f672c74e220a309801e670abfed73990a36d9a
mepragati/100_days_of_Python
/Day 019/TurtleRace.py
1,229
4.34375
4
from turtle import Turtle, Screen import random is_race_on = False all_turtles = [] screen = Screen() screen.setup(width=500,height=400) color_list = ["red","green","blue","yellow","orange","purple"] y_position = [-70,-40,-10,20,50,80] user_input = screen.textinput("Enter here: ","Who do you think will win the race ou...
true
b218e1c5be5716b1b0e645018e64ea2f76a4e593
SeyyedMahdiHP/WhiteHatPython
/python_note.py
1,361
4.21875
4
#PYTHON note ##########################List Slicing: list[start:end:step]###################################### user_args = sys.argv[1:] #sys.argv[1],sys.argv[2],.... #note that sys.argv is a collection or list of stringsT and then with above operation , user_args will be too user_args = sys.argv[2:4]#sys.a...
true
74f6bb45f38a8351d3a5b918ca3e571bfaec6441
Vlad-Yekat/py-scripts
/sort/sort_stack.py
454
4.15625
4
# sort stack recursively using only push, pop and isepmpty def insert(element, stack): if len(stack) != 0 and element > stack[-1]: top = stack.pop() insert(element, stack) stack.append(top) else: stack.append(element) def stack_sort(stack): if len(stack) != 0: top...
true
cfca498a6f0f3f73f698ba67ea6589fac8f7d29d
Nithi07/hello_world
/sum_of_lists.py
335
4.375
4
"""1.(2) Write a python program to find the sum of all numbers in a list""" def sum_list(numbers): a = range(numbers) c = [] for _ in a: b = int(input('enter your number: ')) c.append(b) return sum(c) message = int(input('how many numbers you calculate: ')) print(sum...
true
809e901bd59261096a299234c7fc7e45d996f5c1
Nithi07/hello_world
/sum&avg.py
336
4.15625
4
""" 8. (3)Given a string, return the sum and average of the digits that appear in the string, ignoring all other characters """ message = input('Enter: ') a = [] for i in message: if i.isdigit(): a.append(int(i)) tot = sum(a) ave = tot / len(a) print(f'sum of digit: {tot}\n average of digits: {av...
true
eb7d3ce1447378e96790b98903528afc3a2efc5f
Nithi07/hello_world
/div3and5.py
437
4.25
4
""" Write a function that returns the sum of multiples of 3 and 5 between 0 and limit (parameter). For example, if limit is 20, it should return the sum of 3, 5, 6, 9, 10, 12, 15, 18, 20. """ def sum (limit): i = limit + 1 x = range(0, i) res = [] for num in x: if num % 3 == 0 or num ...
true
70a74f5c8a7603f20958dea54051eb4b842168a3
emellars/euler-sol
/019.py
1,672
4.40625
4
#Runtime ~0.07s. #Determines if the year "n" is a leap year. def is_leap_year(n): if n % 400 == 0: return True elif n % 100 == 0: return False elif n % 4 == 0: return True else: return False #Determines if a month started with Sunday. def month_starting_sunday(days): if days % 7 == 2: r...
true
f9398e1f459c0713816924539bd642ba9d206a76
sry19/python5001
/hw06/turtle_draw.py
2,003
4.8125
5
# Author: Ruoyun Sun # The program uses the star's segment to draw a star and a circle around the # star import turtle import math TRIANGLE_DEGREE = 180 TAN_18_DEGREE = 0.325 STAR_SEG = 500 COS_18_DEGREE = 0.951 STAR_DEGREE = 36 STAR_SIDE = 5 CIRCLE_ANGLE = 360 def main(): '''give the star's segment, draw a sta...
true
9d162e4b60638bc81f79889ad5adc8d223fc8f1c
STJRush/handycode
/Python Basics Loops, Lists, Logic, Quiz etc/time&date/timesDates.py
794
4.25
4
from time import sleep from datetime import datetime now = datetime.now() print("The full datetime object from the computer is", now) print("\n We don't want all that, so we can just pick out parts of the object using strftime. \n") # It's not necessary to list all of these in your own program, think of this a s...
true
0b569dc264fb884868bd7d98ebe2ade16b153c1e
STJRush/handycode
/ALT2 Analytics and Graphing/Live Web Data/openWeatherMapperino.py
2,512
4.125
4
# Python program to find current # weather details of any city # using openweathermap api # 0K = 273.15 °C # import required modules import requests, json # Enter your API key here. Uf you're using this in a progect, you should sign up and get your OWN API key. This one is Kevin's. api_key = "a19c355c905cbcb...
true
b4f7d2810b41752a75c3c457e44a3af88972dc8b
STJRush/handycode
/Python Basics Loops, Lists, Logic, Quiz etc/runBetweenHoursOf.py
810
4.4375
4
# modified from https://stackoverflow.com/questions/20518122/python-working-out-if-time-now-is-between-two-times import datetime def is_hour_between(start, end): # Get the time now now = datetime.datetime.now().time() print("The time now is", now) # Format the datetime string to just be hour...
true
1b6c299cc1dfde6fb9049cba1af4b37494123774
AyushGupta05/Coding-Lessons
/Python/string.py
594
4.3125
4
username=input("Please enter your name") print("Hello",username,"welcome to this class") print("Hello "+username+ " welcome to this class") print(f"Hello {username},welcome to this class") print ("Hello {},welcome to this class".format(username)) #Ways to put a print statement age=input("Please enter your age") print("...
true
cd2f045291ce3ce1d0b9c1653752b989fb3a1860
jordan-carson/Data_Structures_Algos
/HackerRank/staircase.py
594
4.15625
4
#!/bin/python3 import math import os import random import re import sys # Complete the staircase function below. def staircase(n): # get the number of the base # calculate the number of blank spaces for the first row, (do we need an empty row) # so if we are at 1 and n = 10 then we need to print 1 '#' whi...
true
a6ee152b820fa607e090e0d5c44a8f8e854fb190
jordan-carson/Data_Structures_Algos
/Udacity/1. Data Structures/0. Strings/anagram_checker.py
1,085
4.28125
4
# Code def anagram_checker(str1, str2): """ Check if the input strings are anagrams of each other Args: str1(string),str2(string): Strings to be checked Returns: bool: Indicates whether strings are anagrams """ if len(str1) != len(str2): # remove the spaces and lower the ...
true
a5e5305b4997a6fa42444dc521c311506558fbfc
jordan-carson/Data_Structures_Algos
/HackerRank/30daysofcode/day3.py
837
4.40625
4
#!/bin/python3 import math import os import random import re import sys # Given an integer, , perform the following conditional actions: # If is odd, print Weird # If is even and in the inclusive range of to , print Not Weird # If is even and in the inclusive range of to , print Weird # If is even and greater...
true
7ee8d81ca6f796c8a6934e30ac80873de2d9034b
jordan-carson/Data_Structures_Algos
/Udacity/0. Introduction/Project 1/Task4.py
1,575
4.21875
4
""" Read file into texts and calls. It's ok if you don't understand how to read files. """ import csv with open('texts.csv', 'r') as f: reader = csv.reader(f) texts = list(reader) with open('calls.csv', 'r') as f: reader = csv.reader(f) calls = list(reader) """ TASK 4: The telephone company want to i...
true
7bf93a3bc135b7981e7d51910f7bbd78a745a0bf
jordan-carson/Data_Structures_Algos
/Coursera/1. AlgorithmicToolbox/week2_algorithmic_warmup/8_last_digit_of_the_sum_of_squares_of_fibonacci_numbers/fibonacci_sum_squares.py
1,951
4.21875
4
# Uses python3 from sys import stdin import time ## a simple Fibonacci number genarator def get_next_fib(): previous, current = 0, 1 yield previous yield current while True: previous, current = current, previous + current yield current ## find the Pisano sequence for any given number #...
true
6829e40eebf18276067138b8e59cb87c3a091073
jordan-carson/Data_Structures_Algos
/Udacity/1. Data Structures/5. Recursion/staircase.py
609
4.375
4
def staircase(n): """ Write a function that returns the number of steps you can climb a staircase that has n steps. You can climb in either 3 steps, 2 steps or 1 step. Example: n = 3 output = 4 1. 1 step + 1 step + 1 step 2. 1 step + 2 steps 3. 2 steps +...
true
fcd90e605a660a2a6190b8a28411c943adfc8ac5
cleelee097/MIS3640
/Session06/calc.py
2,695
4.1875
4
# age = input('please enter your age:') # if int(age) >= 18: # print('adult') # elif int(age) >=6: # print('teenager') # else: # print('kid') # if x == y: # print('x and y are equal') # else: # if x < y: # print('x is less than y') # else: # print('x is greater than y') ...
true
2f5d0a2673e142b6753b704659fef639b0b586d3
JdeH/LightOn
/LightOn/prog/pong/pong4.py
2,526
4.125
4
class Attribute: # Attribute in the gaming sense of the word, rather than of an object def __init__ (self, game): self.game = game # Done in a central place now self.game.attributes.append (self) # Insert each attribute into a list held by the game # ============ Stan...
true
e9be930cb5bf1cab43b288ccb2b68d0d8f1dd003
felipeng/python-exercises
/12.py
370
4.34375
4
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' Write a program that takes a list of numbers (for example, a = [5, 10, 15, 20, 25]) and makes a new list of only the first and last elements of the given list. For practice, write this code inside a function. ''' a = [5, 10, 15, 20, 25] def first_last(list): retu...
true
25c85e50548c1d465bdccb3e396f3c98b1f74c4c
felipeng/python-exercises
/11.py
615
4.25
4
#!/usr/bin/env python # -*- coding: utf-8 -*- ''' Ask the user for a number and determine whether the number is prime or not. (For those who have forgotten, a prime number is a number that has no divisors.). You can (and should!) use your answer to Exercise 4 to help you. Take this opportunity to practice using funct...
true
d38a0334a8851b5e69809e73aef8cc758ea0e9a6
harrytouche/project-euler
/023/main.py
2,669
4.1875
4
""" A perfect number is a number for which the sum of its proper divisors is exactly equal to the number. For example, the sum of the proper divisors of 28 would be 1 + 2 + 4 + 7 + 14 = 28, which means that 28 is a perfect number. A number n is called deficient if the sum of its proper divisors is less than n and it i...
true
69c35b2065585d91bb59322b28d0664df638d254
harrytouche/project-euler
/009/main.py
733
4.21875
4
""" A Pythagorean triplet is a set of three natural numbers, a < b < c, for which, a2 + b2 = c2 For example, 32 + 42 = 9 + 16 = 25 = 52. There exists exactly one Pythagorean triplet for which a + b + c = 1000. Find the product abc. a + b + c = 1000 a**2 + b**2 = c**2 """ sum_number = 1000 complete = 0 loop_max ...
true
6a9c0f0926fa39305376a3632ef442fb4062c2c3
harrytouche/project-euler
/019/main.py
933
4.25
4
""" You are given the following information, but you may prefer to do some research for yourself. 1 Jan 1900 was a Monday. Thirty days has September, April, June and November. All the rest have thirty-one, Saving February alone, Which has twenty-eight, rain or shine. And on leap years, twenty-nine. A leap year occurs ...
true
e4eee2f6325eb055064b9f94c82eb278296e7c03
Parnit-Kaur/Learning_Resources
/Basic Arithmetic/fibonacci.py
237
4.28125
4
print("Enter the number till you want fibonacci series") n = int(input()) a = 1 b = 1 print("The fibonacci sequence will be") print(a) print(b) for i in range(2, n): fibonacci = a + b b = a a = fibonacci print(fibonacci)
true
39dfeeb264d7dc50e7c7acd992e442b789dcf029
bnewton125/MIT-OpenCourseWare
/6.0001/ps4/ps4a_edited.py
2,539
4.1875
4
# Problem Set 4A # Name: <your name here> # Collaborators: # Time Spent: x:xx def get_permutations(sequence): ''' Enumerate all permutations of a given string sequence (string): an arbitrary string to permute. Assume that it is a non-empty string. You MUST use recursion for this p...
true
99b08d79c104a1995e201ff2cccae06b131a6ee6
mareliefi/learning-python
/calendar.py
1,977
4.40625
4
# This is a calender keeping track of events and setting reminders for the user in an interactive way from time import sleep,strftime your_name = raw_input("Please enter your name: ") calender = {} def welcome(): print "Welcome " + your_name print "Calender is opening" print strftime("%A, %B, %d, %Y") print str...
true
23b21cec45b892ff56c982f21ec07b78d61b9c87
borisBelloc/onlineChallenges_Algorithms_RecruitmentTests
/Algorithms/sort_on_the_fly.py
305
4.1875
4
# Sort on the fly # we ask user 3 numbers and we sort them as they arrive lst = [] while len(lst) < 3: value = int(input("enter one number (sort on the fly) :\n")) i = 0 while i < len(lst) and value > lst[i]: i += 1 lst.insert(i, value) print("here is the sorted array {}\n".format(lst))
true
93dc0a880bf9d61481d40f0e9f49e7e2e034d8d2
cg342/iWriter
/start.py
1,728
4.21875
4
''' https://hashedin.com/blog/how-to-convert-different-language-audio-to-text-using-python/ Step 1: Import speech_recognition as speechRecognition. #import library Step 2: speechRecognition.Recognizer() # Initializing recognizer class in order to recognize the speech. We are using google speech recognition. Step 3: ...
true
f06d11254eda94677d3d723852e6b214222bd85a
BlissfulBlue/linux_cprogramming
/sample_population_deviation.py
1,550
4.4375
4
# Number values in the survey survey = [10, 12, 6, 11, 8, 13] # sorts numbers into ascending order and prints it out survey.sort() print(f"The order from lowest to highest: {survey}") # assigns variable number of values in the list and prints list_length = (len(survey)) print(f"There are {list_length} va...
true
119af8834d42cf7fae4effba7fb229b0e42983c6
Pratik-sys/code-and-learn
/Modules/sorted_random_list.py
620
4.25
4
#!/usr/bin/python3 # Get a sorted list of random integers with unique elements # Given lower and upper limits, generate a sorted list of random numbers with unique elements, starting from start to end. """ Input: num:10, start:100, end:200 Output: [102, 118, 124, 131, 140, 148, 161, 166, 176, 180] Input: num:5, star...
true
b2d11e2223b46cce0f39978d561dd96bead9e03c
Pratik-sys/code-and-learn
/Modules/password_gen.py
2,736
4.25
4
#!/usr/bin/python3 # Write a password generator in Python. # Be creative with how you generate passwords - strong passwords have a mix of lowercase letters, uppercase letters, numbers, and symbols. # The passwords should be random, generating a new password every time the user asks for a new password. """ No test cas...
true
7b6e3af7a399d49e8cc7979d658c3dfe7e4349cc
Pratik-sys/code-and-learn
/Recursion/Fibonacci/fibonacci_using_recursion.py
535
4.15625
4
#!/usr/bin/python3 # Write a function int fib(int n) that returns Fn. For example, if n = 0, then fib() should return 0. If n = 1, then it should return 1. For n > 1, it should return Fn-1 + Fn-2. """ Input: 9 Output : 34 """ # Solution: Method 1 ( Use recursion ) def fib(n): """ This function returns the ...
true
9cf37d2ecef5737c12ba23a5e6b99a0380c051ef
Pratik-sys/code-and-learn
/Dictionary/winner.py
1,350
4.15625
4
# Given an array of names of candidates in an election. A candidate name in array represents a vote casted to the candidate. Print the name of candidates received Max vote. If there is tie, print lexicographically smaller name. # Check lexographically smaller/greater on wiki. """ Input : votes[] = {"john", "johnny", ...
true
10f55cdc4a5acee3e1ece322810f64f1f30ecd25
RealMirage/Portfolio
/Python/ProjectEuler/Problem1.py
637
4.28125
4
''' If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000. ''' # List comprehension method def solve_with_lc(): numbers = range(1000) answer = sum([x for x in numbers if x ...
true
7ec6facac795aff55fc277f331fe57fcaf63d312
juliusortiz/PythonTuts
/ListAndTuplesTutorial.py
1,405
4.28125
4
# #+INDEX - 0 1 2 # courses = ["BSIT","BSCS","BLIS","BA","ACS","BSCS","BSIT"] # # #Range selection # print(courses[1:5]) # # #Changing index value # courses[0] = "Accountancy" # print(courses) # # #Printing the length of the list # print(len(courses)) # # #Printing the number of duplicates from the list #...
true
95829d0e11c21cbd29e53f6ad71211e4fb320bf7
amitsubedi353/Assignment
/assign2.py
412
4.21875
4
def is_Anagram(str1, str2): n1 = len(str1) n2 = len(str2) if n1 != n2: return 0 str1 = sorted(str1) str2 = sorted(str2) for i in range(0, n1): if str1[i] != str2[i]: return 0 return 1 str1 = "realmadrid" str2 = "elarmdiard" if is_Anagram(str1, str2): print ("The two strings ar...
true
160ef0394e57547b4fac0d3afd7b8ef11a21d42f
SushanKattel/LearnBasicPython
/Dictionaries_example.py
1,023
4.375
4
month_names = { "jan": "January", 1: "January", "feb": "February", 2: "February", "mar": "March", 3: "March", "apr": "April", 4: "April", "may": "May", 5: "May", "jun": "June", 6: "June", "jul": "July", 7: "July", "aug": "August", 8: "August", "sep": "...
true
b4ae05891fe87614b461f12bb04a933d48093c67
SaiAshish9/PythonProgramming
/generators/size.py
934
4.28125
4
# generator functions are a # special kind of function that # return a lazy iterator. These are objects # that you can loop over like a list. However, unlike # lists, lazy iterators do not store their conten # Python generators are a simple way of creating iterators. def rev_str(my_str): length = len(my_str) f...
true
06100aee24e1c23fa77cbd1cd43b8ef89bf01d77
Christopher-Caswell/holbertonschool-higher_level_programming
/0x0A-python-inheritance/1-my_list.py
495
4.25
4
#!/usr/bin/python3 """ Write a class My_List that inherits from list Public instance meth: def print_sorted(self): that prints the list, but sorted (ascending sort) """ class MyList(list): """Top shelf, have some class""" def __init__(self): """Superdot inits with parent parameters""" super()....
true
9748755004c7e42dd8817a6a52bd83ff29765926
Christopher-Caswell/holbertonschool-higher_level_programming
/0x07-python-test_driven_development/5-text_indentation.py
1,186
4.34375
4
#!/usr/bin/python3 """ Print a pair of new lines between the strings separators are . ? : raise a flag if not a string, though """ def text_indentation(text): """Consider me noted""" if not isinstance(text, str): raise TypeError("text must be a string") """ chr(10) is a new line. Written...
true
d101baa4a1ecbde443c85ea6c6f2accbf3d3ab2a
pankilshah412/P4E
/Assignment 3.2.py
742
4.375
4
#Write a program to prompt for a score between 0.0 and 1.0. If the score is out of range, print an error. If the score is between 0.0 and 1.0, print a grade using the following table: #Score Grade #>= 0.9 A #>= 0.8 B #>= 0.7 C #>= 0.6 D #< 0.6 F #If the user enters a value out of range, print a suitable error message a...
true
020749fd6c1c702e6212c5df834d5b83ae20d92f
bikenmoirangthem/Python
/reverse_string.py
361
4.59375
5
#program to reverse a string #function to reverse a string def reverse(s): str = '' for i in s: str = i + str return str #getting a string from user str = input('Enter any string : ') #printing the original string print('Your original string : ',str) #printing the reverse string ...
true
6780b2fa26b4c1649f2787738e03ee7c042a453b
chetan4151/python
/positivelist.py
341
4.15625
4
# Write a Python program to print all positive numbers in a range. list1=[] n=int(input("Enter number of elements you want in list :")) print(f"Enter {n} elements:") for i in range(0,n): a=int(input()) list1.append(a) print("list1=",list1) list2=[] for i in range(0,n): if list1[i]>0: list2.append(li...
true
4229ec2c151a99ef52eec1c7841e31e2e12d8794
JanviChitroda24/pythonprogramming
/10 Days of Statistics/Day 0/Weighted Mean.py
1,512
4.28125
4
''' Objective In the previous challenge, we calculated a mean. In this challenge, we practice calculating a weighted mean. Check out the Tutorial tab for learning materials and an instructional video! Task Given an array, , of integers and an array, , representing the respective weights of 's elements, calcula...
true
2a18ab3e5918b5518454ac41565769a3912d7d1f
JanviChitroda24/pythonprogramming
/Hackerrank Practice/RunnerUp.py
879
4.25
4
''' Given the participants' score sheet for your University Sports Day, you are required to find the runner-up score. You are given scores. Store them in a list and find the score of the runner-up. Input Format The first line contains . The second line contains an array of integers each separated by a space....
true
eae94c125d5a7b3f733c77573111e92cc1fdb527
JanviChitroda24/pythonprogramming
/Hackerrank Practice/Mini_Max Sum.py
1,796
4.40625
4
''' Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers. For example, . Our minimum sum is and our maximum sum is . We would ...
true
08d15907da0916342026766888602ebb9c9c9e56
JanviChitroda24/pythonprogramming
/Hackerrank Practice/Time Conversion.py
1,395
4.15625
4
''' Given a time in -hour AM/PM format, convert it to military (24-hour) time. Note: Midnight is 12:00:00AM on a 12-hour clock, and 00:00:00 on a 24-hour clock. Noon is 12:00:00PM on a 12-hour clock, and 12:00:00 on a 24-hour clock. Function Description Complete the timeConversion function in the editor below...
true
d908a2c337533ac0f25113b1ca7ac994247cb4ec
JanviChitroda24/pythonprogramming
/Hackerrank Practice/Lists.py
1,889
4.65625
5
``` Consider a list (list = []). You can perform the following commands: insert i e: Insert integer at position . print: Print the list. remove e: Delete the first occurrence of integer . append e: Insert integer at the end of the list. sort: Sort the list. pop: Pop the last element from the list. reverse: ...
true
3ce7edd59141cefc007942f7ddbd53ba0a12c8ad
fahimkk/automateTheBoringStuff
/chapter_5/birthdays.py
491
4.15625
4
birthdays = {'Alice':'April 1', 'Bob':'March 21', 'Carol':'Dec 4'} while True: name = input('Enter a name: (blank to Quit)\n') if name == '': break if name in birthdays: print(birthdays[name]+' is the birthday of '+name) print() else: print('I dont have birthday informato...
true
726eca08e0049d17f4000037c283bacc627d1eb2
larsnohle/57
/21/twentyoneChallenge2.py~
1,239
4.15625
4
#!/usr/bin/python3 # -*- coding: utf-8 -*- def get_positive_number_input(msg, to_float = False): done = False while not done: try: i = -1.0 if to_float == True: i = float(input(msg)) else: i = int(input(msg)) if i < 0: ...
true
f6fcd47c5084c99cf3738301b304398fde52d508
larsnohle/57
/18/eighteenChallenge2.py
1,682
4.1875
4
#!/usr/bin/python3 # -*- coding: utf-8 -*- def get_positive_number_input(msg, to_float = False): done = False while not done: try: i = -1.0 if to_float == True: i = float(input(msg)) else: i = int(input(msg)) if i < 0: ...
true
de6c5c6492335f75b402a2d5228bcf8d25511b98
larsnohle/57
/8/eightChallenge3.py
921
4.21875
4
def get_positive_integer_input(msg): done = False while not done: try: i = int(input(msg)) if i < 0: print("Please enter a number > 0") else: done = True except ValueError: print("That was not a valid integer. Please...
true
e42960bffe6815300320f8d19fb6ea226e6ac0cd
larsnohle/57
/24/twentyfour.py~
634
4.3125
4
#!/usr/bin/python3 # -*- coding: utf-8 -*- def is_anagram(first_string, second_string): if len(first_string) != len(second_string): return False HERE def main(): print("Enter two strings and I'll tell you if they are anagrams") first_string = input("Enter the first string:") second_string =...
true
73c23d579194a4b068c24d0336e5fbd5e506ae3e
eric-mahasi/algorithms
/algorithms/linear_search.py
808
4.1875
4
"""This script demonstrates the linear search algorithm in Python 3.""" AGES = [19, 20, 13, 1, 15, 7, 11, 3, 16, 10] def display(): """Prints all the items in the list.""" print("The ages are: ") for i in range(len(AGES)): print(AGES[i]) def linear_search(array, x): """Sequentially check ea...
true
5fca17139a2fb3bcfb68acedd4ee3428735b32f6
eric-mahasi/algorithms
/algorithms/bubble_sort.py
895
4.4375
4
"""This script demonstrates the bubble sort algorithm in Python 3.""" AGES = [19, 20, 13, 1, 15, 7, 11, 3, 16, 10] def display(): """Prints all the items in the list.""" print("The ages are: ") for i in range(len(AGES)): print(AGES[i]) print("\n") def bubble_sort(array): """Repeatedly s...
true
c0c1dbd89be9a529c9cb3b78e8a913d66fa6a89e
MirzaRaiyan/The-Most-Occuring-Number-In-a-String-Using-Regex.py
/Occuring.py
1,132
4.375
4
# your code goes here# Python program to # find the most occurring element import re from collections import Counter def most_occr_element(word): # re.findall will extract all the elements # from the string and make a list arr = re.findall(r'[0-9] +', word) def most_occr_element(word): ...
true
9e675b13c7217efa27655e0950b31b8525e2bbda
pereiralabs/publiclab
/python/csv_filter_lines/ex_csv.py
903
4.125
4
#This script reads a CSV file, then return lines based on a filter #Setting the locale # -*- coding: utf-8 -* #Libraries section import csv #List of files you want to extract rows from file_list = ["/home/foo/Downloads/20180514.csv"] #List of columns you want to extract from each row included_cols = [5,2,1] #Now l...
true
a52b5830ce6e24ae87193c9d2b51fa4a97160959
yun-lai-yun-qu/patterns
/design-patterns/python/creational/factory_method.py
1,620
4.59375
5
#!/usr/bin/python # -*- coding : utf-8 -*- """ brief: Factory method. Use multiple factories for multiple products pattern: Factory method: Define an interface for creating an object, but let subclasses decide which class to instantiate.Factory Method lets a class defer instantiation to subclasses...
true
46bde43ea1468e8b0e96c26935a4bb77baec0e7e
vkagwiria/thecodevillage
/Python Week 2/Day 1/exercise4.py
573
4.21875
4
# User Input: Ask the user to input the time of day in military time without a # colon (1100 = 11:00 AM). Write a conditional statement so that it outputs the # following: # a. “Good Morning” if less than 1200 # b. “Good Afternoon” if between 1200 and 1700 # c. “Good Evening” if equal or above 1700 time=int(i...
true
bb8a0d849cd2a47df53088fee0b8c926f8654c9a
vkagwiria/thecodevillage
/Python Week 2/Day 2/exercise1.py
464
4.1875
4
# Ask the user for 3 numbers # Calculate the sum of the three numbers # if the values are equal then return thrice of their sum # else, return the sum num1=int(input("Please insert the first number here: ")) num2=int(input("Please insert the second number here: ")) num3=int(input("Please insert the third number...
true