content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
#! /usr/bin/env python3 # author: Mark W. Naylor # file: message.py # date: 2018-Jan-28 def message(msg, name): output = "{0}, {1}.".format(msg, name) print(output) def hello(name="world"): message("Hello", name) def goodbye(name="world"): message("Goodbye", name) def main(): #hello() hell...
def message(msg, name): output = '{0}, {1}.'.format(msg, name) print(output) def hello(name='world'): message('Hello', name) def goodbye(name='world'): message('Goodbye', name) def main(): hello('David') goodbye('David') if __name__ == '__main__': main()
def decimal2binario(d): if d == 0: return d b = bin(d).lstrip("0b") return b
def decimal2binario(d): if d == 0: return d b = bin(d).lstrip('0b') return b
TAS_TO_PORTAL_MAP = {'description': 'description', 'piId': 'pi_id', 'title': 'title', 'chargeCode': 'charge_code', 'typeId': 'type_id', 'fieldId': 'field_id', 'type': 'type_name', ...
tas_to_portal_map = {'description': 'description', 'piId': 'pi_id', 'title': 'title', 'chargeCode': 'charge_code', 'typeId': 'type_id', 'fieldId': 'field_id', 'type': 'type_name', 'field': 'field_name', 'nickname': 'nickname'}
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appli...
def multiscale_def(image_shape, num_scale, use_flip=True): base_name_list = ['image'] multiscale_def = {} ms_def_names = [] if use_flip: num_scale //= 2 base_name_list.append('image_flip') multiscale_def['image_flip'] = {'shape': [None] + image_shape, 'dtype': 'float32', 'lod_lev...
# Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # self.val = val # self.next = next # Solution A class Solution: def removeNthFromEnd(self, head: ListNode, n: int) -> ListNode: dummy = ListNode(0) dummy.next = head cur = hea...
class Solution: def remove_nth_from_end(self, head: ListNode, n: int) -> ListNode: dummy = list_node(0) dummy.next = head cur = head length = 0 while cur: length += 1 cur = cur.next cur = dummy for _ in range(length - n): c...
# input input_word = input("Enter a word: ") vowels = ["a", "e", "i", "o", "u"] num_vowels = 0 # response for letter in input_word: if letter in vowels: num_vowels += 1 print(num_vowels)
input_word = input('Enter a word: ') vowels = ['a', 'e', 'i', 'o', 'u'] num_vowels = 0 for letter in input_word: if letter in vowels: num_vowels += 1 print(num_vowels)
class State: def __init__(self, isInit = False, isFinish = False): self._isInit = isInit self._isFinish = isFinish def setInit(self, nval): self._isInit = nval def isInit(self): return self._isInit def setFinish(self, nval): self._isFinish = nval d...
class State: def __init__(self, isInit=False, isFinish=False): self._isInit = isInit self._isFinish = isFinish def set_init(self, nval): self._isInit = nval def is_init(self): return self._isInit def set_finish(self, nval): self._isFinish = nval def is_fi...
class Trapeziums(object): def __init__(self, left, left_top, right_top, right): self.left = left self.right = right self.left_top = left_top self.right_top = right_top def membership_value(self, input_value): if (input_value >= self.left_top) and (input_value <= self.rig...
class Trapeziums(object): def __init__(self, left, left_top, right_top, right): self.left = left self.right = right self.left_top = left_top self.right_top = right_top def membership_value(self, input_value): if input_value >= self.left_top and input_value <= self.right...
numlist=list() while True: x=input("Enter a no.") if x=="done": break x=float(x) numlist.append(x) print(sum(numlist)/len(numlist))
numlist = list() while True: x = input('Enter a no.') if x == 'done': break x = float(x) numlist.append(x) print(sum(numlist) / len(numlist))
db._DBProxy__ctxid = 'b85246688f24c14712e0a7dfb93413f5defd50c4' db.getrecord(0) db.checkcontext() dbtree.get_children() dbtree.get_children([1])
db._DBProxy__ctxid = 'b85246688f24c14712e0a7dfb93413f5defd50c4' db.getrecord(0) db.checkcontext() dbtree.get_children() dbtree.get_children([1])
quantidade_habilidades, quantidade_texto = [int(n) for n in input().split()] dicionario = dict() for c in range(quantidade_habilidades): habilidade_descricao = input().split() dicionario[habilidade_descricao[0]] = float(habilidade_descricao[1]) for c in range(quantidade_texto): salario = 0 while True...
(quantidade_habilidades, quantidade_texto) = [int(n) for n in input().split()] dicionario = dict() for c in range(quantidade_habilidades): habilidade_descricao = input().split() dicionario[habilidade_descricao[0]] = float(habilidade_descricao[1]) for c in range(quantidade_texto): salario = 0 while True:...
# # PySNMP MIB module TUBS-IBR-XEN-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TUBS-IBR-XEN-MIB # Produced by pysmi-0.3.4 at Wed May 1 15:27:54 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar ...
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, single_value_constraint, value_size_constraint, value_range_constraint, constraints_intersection) ...
class BridgeWorker(): def __init__(self, thread_name, connection_string, process, action_queue): self.thread_name = thread_name self.connection_string = connection_string self.process = process self.action_queue = action_queue self.should_shutdown = False ...
class Bridgeworker: def __init__(self, thread_name, connection_string, process, action_queue): self.thread_name = thread_name self.connection_string = connection_string self.process = process self.action_queue = action_queue self.should_shutdown = False self.pika_que...
class Solution: def spiralMatrixIII(self, R: int, C: int, r0: int, c0: int) -> 'List[List[int]]': directions = [(0, 1), (1, 0), (0, -1), (-1, 0)] uncolored = R * C result = [] x, y = r0, c0 turns = 0 while uncolored > 0: dx, dy = directions...
class Solution: def spiral_matrix_iii(self, R: int, C: int, r0: int, c0: int) -> 'List[List[int]]': directions = [(0, 1), (1, 0), (0, -1), (-1, 0)] uncolored = R * C result = [] (x, y) = (r0, c0) turns = 0 while uncolored > 0: (dx, dy) = directions[turns ...
n,k=map(int,input().split()) x=[*map(int,input().split())] forbidden=[False]*10 for i in range(0,10): if i not in x: forbidden[i]=True ans=-1 for i in range(1,n+1): fail=False t=i while i: if forbidden[i%10]: fail=True break i//=10 if not fail: ans=t ...
(n, k) = map(int, input().split()) x = [*map(int, input().split())] forbidden = [False] * 10 for i in range(0, 10): if i not in x: forbidden[i] = True ans = -1 for i in range(1, n + 1): fail = False t = i while i: if forbidden[i % 10]: fail = True break i ...
class palindrome(): def __init__(self,string): self.string = string def __call__(self): testStr = self.string.lower() for x in [" ","!",]: testStr = testStr.replace(x,"") if testStr == testStr[::-1]: return True else: return False def pri...
class Palindrome: def __init__(self, string): self.string = string def __call__(self): test_str = self.string.lower() for x in [' ', '!']: test_str = testStr.replace(x, '') if testStr == testStr[::-1]: return True else: return False ...
def headfront(): i01.head.neck.moveTo(90) i01.head.rothead.moveTo(90)
def headfront(): i01.head.neck.moveTo(90) i01.head.rothead.moveTo(90)
bot_major_version = 0 bot_minor_version = 1 bot_patch_version = 2 def bot_version_string(): return f'{bot_major_version}.{bot_minor_version}.{bot_patch_version}'
bot_major_version = 0 bot_minor_version = 1 bot_patch_version = 2 def bot_version_string(): return f'{bot_major_version}.{bot_minor_version}.{bot_patch_version}'
namesList = ['Tuffy','Ali','Nysha','Tim' ] sentence = 'My dog sleeps on sofa' names = ';'.join(namesList) print(type(names), ':', names) wordList = sentence.split(' ') print((type(wordList)), ':', wordList) additionExample = 'ganehsa' + 'ganesha' + 'ganesha' multiplicationExample = 'ganesha' * 2 print('Text Additions...
names_list = ['Tuffy', 'Ali', 'Nysha', 'Tim'] sentence = 'My dog sleeps on sofa' names = ';'.join(namesList) print(type(names), ':', names) word_list = sentence.split(' ') print(type(wordList), ':', wordList) addition_example = 'ganehsa' + 'ganesha' + 'ganesha' multiplication_example = 'ganesha' * 2 print('Text Additio...
class Prompts: def CPrompt(): ExtentionType = input("What type of extention do you want the output to be? Ex. exe \n") ProjectName = input("Whats the name of the project?") Flags = input("What other flags would you like to add? \n -g ")
class Prompts: def c_prompt(): extention_type = input('What type of extention do you want the output to be? Ex. exe \n') project_name = input('Whats the name of the project?') flags = input('What other flags would you like to add? \n -g ')
class Solution: # @param s, a string # @return an integer def titleToNumber(self, s): alphabets = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'] s = list(s) sum = 0 for index, element in enu...
class Solution: def title_to_number(self, s): alphabets = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'] s = list(s) sum = 0 for (index, element) in enumerate(s[::-1]): sum += 26 ** index...
def main(): # input N, M = map(int, input().split()) ABs = [[*map(int, input().split())] for _ in range(M)] # compute adj = [[] for _ in range(N)] for A, B in ABs: A -= 1 B -= 1 adj[A].append(B) adj[B].append(A) ans = 0 for i, vs in enumerate(adj): ...
def main(): (n, m) = map(int, input().split()) a_bs = [[*map(int, input().split())] for _ in range(M)] adj = [[] for _ in range(N)] for (a, b) in ABs: a -= 1 b -= 1 adj[A].append(B) adj[B].append(A) ans = 0 for (i, vs) in enumerate(adj): tmp_cnt = 0 ...
# uncompyle6 version 3.7.4 # Python bytecode 3.7 (3394) # Decompiled from: Python 3.7.9 (tags/v3.7.9:13c94747c7, Aug 17 2020, 18:58:18) [MSC v.1900 64 bit (AMD64)] # Embedded file name: T:\InGame\Gameplay\Scripts\Server\autonomy\parameterized_autonomy_request_info.py # Compiled at: 2016-09-08 21:38:24 # Size of source ...
class Parameterizedautonomyrequestinfo: def __init__(self, commodities, static_commodities, objects, retain_priority, retain_carry_target=True, objects_to_ignore=None, affordances=None, randomization_override=None, radius_to_consider=0, consider_scores_of_zero=False, test_connectivity_to_target=True, retain_contex...
def nswp(n): if n < 2: return 1 a, b = 1, 1 for i in range(2, n + 1): c = 2 * b + a a = b b = c return b n = 3 print(nswp(n))
def nswp(n): if n < 2: return 1 (a, b) = (1, 1) for i in range(2, n + 1): c = 2 * b + a a = b b = c return b n = 3 print(nswp(n))
def user_input(): ''' this function to get input from user return to_currency, from_currency, date ''' to_currency = input("what is your to currency code ? \n") from_currency = input("what is your from currency code? \n") date = input("what is your date? \n") return to_cur...
def user_input(): """ this function to get input from user return to_currency, from_currency, date """ to_currency = input('what is your to currency code ? \n') from_currency = input('what is your from currency code? \n') date = input('what is your date? \n') return (to_currency...
def foo(arg1, *, kwarg1): pass def bar(): pass
def foo(arg1, *, kwarg1): pass def bar(): pass
# # PySNMP MIB module DECserver-Accounting-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/DECserver-Accounting-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 18:22:20 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7....
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_size_constraint, single_value_constraint, constraints_union, value_range_constraint, constraints_intersection) ...
def point_in_region(lower_left_corner, upper_right_corner, x, y): return ( x >= lower_left_corner.x and x <= upper_right_corner.x and y >= lower_left_corner.y and y <= upper_right_corner.y)
def point_in_region(lower_left_corner, upper_right_corner, x, y): return x >= lower_left_corner.x and x <= upper_right_corner.x and (y >= lower_left_corner.y) and (y <= upper_right_corner.y)
def duplicate_zeros(arr): if 0 not in arr: return arr else: array = [] for a in arr: if a == 0: array.extend([0, 0]) else: array.append(a) for i in range(len(arr)): arr[i] = array[i]
def duplicate_zeros(arr): if 0 not in arr: return arr else: array = [] for a in arr: if a == 0: array.extend([0, 0]) else: array.append(a) for i in range(len(arr)): arr[i] = array[i]
class MinStack(object): def __init__(self): self.s = [] self.min_s = [] def push(self, x): self.s.append(x) if self.min_s: if self.min_s[-1] > x: self.min_s.append(x) else: self.min_s.append(self.min_s[-1]) else: ...
class Minstack(object): def __init__(self): self.s = [] self.min_s = [] def push(self, x): self.s.append(x) if self.min_s: if self.min_s[-1] > x: self.min_s.append(x) else: self.min_s.append(self.min_s[-1]) else: ...
# Guest & items allGuests = {'Alice': {'apples': 5, 'pretzels': 12}, 'Bob': {'ham sandwiches': 3, 'apples': 2}, 'Carol': {'cups': 3, 'apple pies': 1}} # function: get amount of a item(allGuests, item) def totalBrought(guests, item): # initiate a counter numBrought = 0 # traverse va...
all_guests = {'Alice': {'apples': 5, 'pretzels': 12}, 'Bob': {'ham sandwiches': 3, 'apples': 2}, 'Carol': {'cups': 3, 'apple pies': 1}} def total_brought(guests, item): num_brought = 0 for v in guests.values(): num_brought += v.get(item, 0) return numBrought food_set = set() for v in allGuests.valu...
# This problem was asked by Yahoo. # Write an algorithm that computes the reversal of a directed graph. # For example, if a graph consists of A -> B -> C, it should become A <- B <- C. #### graph1 = {} graph1['A'] = ['B', 'C', 'D'] graph1['B'] = ['C', 'D'] graph1['C'] = ['D'] #### def reversegraph(gr): ret = {} ...
graph1 = {} graph1['A'] = ['B', 'C', 'D'] graph1['B'] = ['C', 'D'] graph1['C'] = ['D'] def reversegraph(gr): ret = {} for (beg, v) in gr.items(): for end in v: ret[end] = ret.get(end, []) + [beg] return ret print(graph1) print(reversegraph(graph1))
class Stack: sizeof = 0 def __init__(self,list = None): if list == None: self.item =[] else : self.item = list def push(self,i): self.item.append(i) def size(self): return len(self.item) def isEmpty(self): if self.size()==0: ...
class Stack: sizeof = 0 def __init__(self, list=None): if list == None: self.item = [] else: self.item = list def push(self, i): self.item.append(i) def size(self): return len(self.item) def is_empty(self): if self.size() == 0: ...
if __name__ == '__main__': # This is a line printing Hello World # This is a second line comment ''' This is a line printing Hello World This is a second line comment ''' print("Hello World") # This is a comment
if __name__ == '__main__': '\n This is a line printing Hello World\n This is a second line comment\n ' print('Hello World')
def mutate_string(string, position, character): stringlist = list(string) stringlist[position] = character string = ''.join(stringlist) return string
def mutate_string(string, position, character): stringlist = list(string) stringlist[position] = character string = ''.join(stringlist) return string
flowers = input() amount_flowers = int(input()) budget = int(input()) final_price = 0 one_rose_price = 5 one_Dahlias_price = 3.80 one_Tulips_price = 2.80 one_Narcissus_price = 3 one_Gladiolus_price = 2.50 if flowers == "Roses": final_price = amount_flowers * one_rose_price if amount_flowers > 80: fin...
flowers = input() amount_flowers = int(input()) budget = int(input()) final_price = 0 one_rose_price = 5 one__dahlias_price = 3.8 one__tulips_price = 2.8 one__narcissus_price = 3 one__gladiolus_price = 2.5 if flowers == 'Roses': final_price = amount_flowers * one_rose_price if amount_flowers > 80: final...
def main(): dic = { 'wide': [ 'logs/pipelines/all_pcgrl/pcgrl_smb_wide_5.mscluster41.144549.out', 'logs/pipelines/all_pcgrl/pcgrl_smb_wide_4.mscluster40.144548.out', 'logs/pipelines/all_pcgrl/pcgrl_smb_wide_3.mscluster18.144536.out', 'logs/pipelines/all_pcgrl/...
def main(): dic = {'wide': ['logs/pipelines/all_pcgrl/pcgrl_smb_wide_5.mscluster41.144549.out', 'logs/pipelines/all_pcgrl/pcgrl_smb_wide_4.mscluster40.144548.out', 'logs/pipelines/all_pcgrl/pcgrl_smb_wide_3.mscluster18.144536.out', 'logs/pipelines/all_pcgrl/pcgrl_smb_wide_2.mscluster39.144547.out', 'logs/pipelines/...
a=[5,20,15,20,25,50,20] b=set(a) b.remove(20) print(b)
a = [5, 20, 15, 20, 25, 50, 20] b = set(a) b.remove(20) print(b)
FEATKEY_NR_IMAGES = "nr_images" FEATKEY_IMAGE_HEIGHT = "height" FEATKEY_IMAGE_WIDTH = "width" FEATKEY_ORIGINAL_HEIGHT = "original_height" FEATKEY_ORIGINAL_WIDTH = "original_width" FEATKEY_PATIENT_ID = "patient_id" FEATKEY_LATERALITY = "laterality" FEATKEY_VIEW = "view" FEATKEY_IMAGE = "pixel_arr" FEATKEY_IMAGE_ORIG = "...
featkey_nr_images = 'nr_images' featkey_image_height = 'height' featkey_image_width = 'width' featkey_original_height = 'original_height' featkey_original_width = 'original_width' featkey_patient_id = 'patient_id' featkey_laterality = 'laterality' featkey_view = 'view' featkey_image = 'pixel_arr' featkey_image_orig = '...
# DDA Algorithm def draw_line(x0, y0, x1, y1): dy = y1 - y0 dx = x1 - x0 m = dy / dx current_y = y0 print(f'dy = {dy}') print(f'dx = {dx}') print(f'm = {m}') for index in range (x0, x1 + 1): print(f'x = {index}, y = {round(current_y)}') current_y = curren...
def draw_line(x0, y0, x1, y1): dy = y1 - y0 dx = x1 - x0 m = dy / dx current_y = y0 print(f'dy = {dy}') print(f'dx = {dx}') print(f'm = {m}') for index in range(x0, x1 + 1): print(f'x = {index}, y = {round(current_y)}') current_y = current_y + m draw_line(2, 1, 7, 3)
class Strategy: moneymanagement = None def __init__(self, moneymanagement): self.moneymanagement = moneymanagement def can_find_pattern(self, data): if self.moneymanagement.checkDrawdown() < - float(self.moneymanagement.algorithm.Portfolio.Cash) * 0.1: return False r...
class Strategy: moneymanagement = None def __init__(self, moneymanagement): self.moneymanagement = moneymanagement def can_find_pattern(self, data): if self.moneymanagement.checkDrawdown() < -float(self.moneymanagement.algorithm.Portfolio.Cash) * 0.1: return False retur...
# Attribute types STRING = 1 NUMBER = 2 DATETIME = 3 # Analysis Types SENTIMENT_ANALYSIS = 1 DOCUMENT_CLUSTERING = 2 CONCEPT_EXTRACTION = 3 DOCUMENT_CLASSIFICATION = 4 # Analysis Status NOT_EXECUTED = 1 IN_PROGRESS = 2 EXECUTED = 3 # Creation Status DRAFT = 1 COMPLETED = 2 # Visibilities PUBLIC = 1 PRIVATE = 2 TEAM...
string = 1 number = 2 datetime = 3 sentiment_analysis = 1 document_clustering = 2 concept_extraction = 3 document_classification = 4 not_executed = 1 in_progress = 2 executed = 3 draft = 1 completed = 2 public = 1 private = 2 team = 3
#!/usr/bin/env python3 # coding:utf-8 f = open("yankeedoodle.csv") nums = [num.strip() for num in f.read().split(',')] f.close() res = [int(x[0][5] + x[1][5] + x[2][6]) for x in zip(nums[0::3], nums[1::3], nums[2::3])] print(''.join([chr(e) for e in res]))
f = open('yankeedoodle.csv') nums = [num.strip() for num in f.read().split(',')] f.close() res = [int(x[0][5] + x[1][5] + x[2][6]) for x in zip(nums[0::3], nums[1::3], nums[2::3])] print(''.join([chr(e) for e in res]))
hex_colors = { "COLOR_1": "#d9811e", "TEXT_BUTTON_LIGHT": "#000000", "BUTTON_1": "#dfdfdf", "BACKGROUND": "#dfdfdf", "LABEL_TEXT_COLOR_LIGHT": "black", "FRAME_1_DARK": "#2b2b42", "TEXT_BUTTON_DARK": "white", "BUTTON_DARK": "#292929", "BACKGROUND_DARK": "#292929", "LABEL_TEXT_CO...
hex_colors = {'COLOR_1': '#d9811e', 'TEXT_BUTTON_LIGHT': '#000000', 'BUTTON_1': '#dfdfdf', 'BACKGROUND': '#dfdfdf', 'LABEL_TEXT_COLOR_LIGHT': 'black', 'FRAME_1_DARK': '#2b2b42', 'TEXT_BUTTON_DARK': 'white', 'BUTTON_DARK': '#292929', 'BACKGROUND_DARK': '#292929', 'LABEL_TEXT_COLOR_DARK': 'white'} custom_size = {'init_wi...
## Mel-filterbank mel_window_length = 25 # In milliseconds mel_window_step = 10 # In milliseconds mel_n_channels = 40 ## Audio sampling_rate = 16000 # Number of spectrogram frames in a partial utterance partials_n_frames = 160 # 1600 ms ## Voice Activation Detection vad_window_length = 30 # In millisecond...
mel_window_length = 25 mel_window_step = 10 mel_n_channels = 40 sampling_rate = 16000 partials_n_frames = 160 vad_window_length = 30 vad_moving_average_width = 8 vad_max_silence_length = 6 audio_norm_target_d_bfs = -30 model_hidden_size = 256 model_embedding_size = 256 model_num_layers = 3
#python3 for t in range(int(input())): count = 0 s,w1,w2,w3 = map(int,input().split()) if((w1+w2+w3)<=s): count = 1 elif((w1+w2)<=s): if(w3 <= s): count = 2 else: count = 1 elif((w2+w3)<=s): if(w3 <= s): count = 2 else:...
for t in range(int(input())): count = 0 (s, w1, w2, w3) = map(int, input().split()) if w1 + w2 + w3 <= s: count = 1 elif w1 + w2 <= s: if w3 <= s: count = 2 else: count = 1 elif w2 + w3 <= s: if w3 <= s: count = 2 else: ...
# ================================================= # # Trash Guy Animation # # (> ^_^)> # # Made by Zac (trashguy@zac.cy) # # Version 4.1.0+20201210 # # Donate: ...
_lut = ((0, 7), (0, 7), (0, 7), (0, 7), (0, 7), (0, 7), (0, 7), (1, 9), (1, 9), (1, 9), (1, 9), (1, 9), (1, 9), (1, 9), (1, 9), (1, 9), (2, 11), (2, 11), (2, 11), (2, 11), (2, 11), (2, 11), (2, 11), (2, 11), (2, 11), (2, 11), (2, 11), (3, 13), (3, 13), (3, 13), (3, 13), (3, 13), (3, 13), (3, 13), (3, 13), (3, 13), (3, ...
with open('F_T_W copy/ada_fund.json') as f: data = json.load(f) print(data)
with open('F_T_W copy/ada_fund.json') as f: data = json.load(f) print(data)
class Dice(object): __slots__ = ['sides'] def __init__(self, sides): self.sides = sides class DiceStack(object): __slots__ = ['amount', 'dice'] def __init__(self, amount, dice): self.amount = amount self.dice = dice
class Dice(object): __slots__ = ['sides'] def __init__(self, sides): self.sides = sides class Dicestack(object): __slots__ = ['amount', 'dice'] def __init__(self, amount, dice): self.amount = amount self.dice = dice
_cmds_registry = {} def register(cmd:str, alias:str) -> bool: if alias in _cmds_registry: return False else: _cmds_registry[alias] = cmd return True def get_cmd(alias:str) -> str: if alias in _cmds_registry: return _cmds_registry[alias] else: return ''
_cmds_registry = {} def register(cmd: str, alias: str) -> bool: if alias in _cmds_registry: return False else: _cmds_registry[alias] = cmd return True def get_cmd(alias: str) -> str: if alias in _cmds_registry: return _cmds_registry[alias] else: return ''
def word_form(number): ones = ('', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine') tens = ('', '', 'twenty', 'thirty', 'forty', 'fifty', 'sixty', 'seventy', 'eighty', 'ninety') teens = ('ten', 'eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen', ...
def word_form(number): ones = ('', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine') tens = ('', '', 'twenty', 'thirty', 'forty', 'fifty', 'sixty', 'seventy', 'eighty', 'ninety') teens = ('ten', 'eleven', 'twelve', 'thirteen', 'fourteen', 'fifteen', 'sixteen', 'seventeen', 'eighteen', ...
__author__ = 'Ladeinde Oluwaseun' __copyright__ = 'Copyright 2018, Ladeinde Oluwaseun' __credits__ = ['Ladeinde Oluwaseun, amordigital'] __license__ = 'BSD' __version__ = '1.5.1' __maintainer__ = 'Ladeinde Oluwaseun' __email__ = 'oluwaseun.ladeinde@gmail.com' __status__ = 'Development'
__author__ = 'Ladeinde Oluwaseun' __copyright__ = 'Copyright 2018, Ladeinde Oluwaseun' __credits__ = ['Ladeinde Oluwaseun, amordigital'] __license__ = 'BSD' __version__ = '1.5.1' __maintainer__ = 'Ladeinde Oluwaseun' __email__ = 'oluwaseun.ladeinde@gmail.com' __status__ = 'Development'
a=10 b=5 print('Addition:', a+b) print('Substraction: ', a-b) print('Multiplication:', a*b) print('Division: ', a/b) print('Remainder: ', a%b) print('Exponential:', a ** b)
a = 10 b = 5 print('Addition:', a + b) print('Substraction: ', a - b) print('Multiplication:', a * b) print('Division: ', a / b) print('Remainder: ', a % b) print('Exponential:', a ** b)
CHUNK_SIZE = (1024**2) * 50 file_number = 1 with open('encoder-5-3000.pkl', 'rb') as f: chunk = f.read(CHUNK_SIZE) while chunk: with open('encoder-5-3000_part_' + str(file_number), 'wb') as chunk_file: chunk_file.write(chunk) file_number += 1 chunk = f.read(CHUNK_SIZE)
chunk_size = 1024 ** 2 * 50 file_number = 1 with open('encoder-5-3000.pkl', 'rb') as f: chunk = f.read(CHUNK_SIZE) while chunk: with open('encoder-5-3000_part_' + str(file_number), 'wb') as chunk_file: chunk_file.write(chunk) file_number += 1 chunk = f.read(CHUNK_SIZE)
def app(amb , start_response): arq=open('index.html','rb') data = arq.read() status = "200 OK" headers = [('Content-type',"text/html")] start_response(status,headers) return [data]
def app(amb, start_response): arq = open('index.html', 'rb') data = arq.read() status = '200 OK' headers = [('Content-type', 'text/html')] start_response(status, headers) return [data]
#!/usr/bin/env python3 SIZE = 100 with open('03-output.pbm', 'wb') as f: f.write(b'P4\n100 100\n') for i in range(SIZE): counter = 0 xs = b'' for j in range(SIZE): counter += 1 if (i + j) % 2 == 0: xs += b'1' else: xs ...
size = 100 with open('03-output.pbm', 'wb') as f: f.write(b'P4\n100 100\n') for i in range(SIZE): counter = 0 xs = b'' for j in range(SIZE): counter += 1 if (i + j) % 2 == 0: xs += b'1' else: xs += b'0' if co...
# # PySNMP MIB module RSTP-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/RSTP-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:50:24 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:1...
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, constraints_union, value_size_constraint, value_range_constraint, single_value_constraint) ...
#..............example 1 combine................ # s = "ABC" # s2 = "123" # L = [x+y for x in s for y in s2] # print(L) #..............example 2 remove duplicates................ # L = [1, 3, 2, 1, 6, 4, 2, 98, 82] # L2 = [] # for x in L: # if x not in L2: # L2.append(x) # print(L2) #..........
l = [1, 1] while len(L) < 40: L.append(L[-1] + L[-2]) print(L)
def main(request, response): headers = [] if "cors" in request.GET: headers.append(("Access-Control-Allow-Origin", "*")) headers.append(("Access-Control-Allow-Credentials", "true")) headers.append(("Access-Control-Allow-Methods", "GET, POST, PUT, FOO")) headers.append(("Access-Co...
def main(request, response): headers = [] if 'cors' in request.GET: headers.append(('Access-Control-Allow-Origin', '*')) headers.append(('Access-Control-Allow-Credentials', 'true')) headers.append(('Access-Control-Allow-Methods', 'GET, POST, PUT, FOO')) headers.append(('Access-Co...
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_jar") load("@bazel_tools//tools/build_defs/repo:jvm.bzl", "jvm_maven_import_external") load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") load("@bazelrio//:deps_utils.bzl", "cc_library_headers", "cc_library_shared", "cc_library_sourc...
load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_archive', 'http_jar') load('@bazel_tools//tools/build_defs/repo:jvm.bzl', 'jvm_maven_import_external') load('@bazel_tools//tools/build_defs/repo:utils.bzl', 'maybe') load('@bazelrio//:deps_utils.bzl', 'cc_library_headers', 'cc_library_shared', 'cc_library_sourc...
class Display(object): @classmethod def getColumns(cls): raise NotImplementedError @classmethod def getRows(cls): raise NotImplementedError @classmethod def getRowText(cls, row): raise NotImplementedError def show(self): for i in range(int(self.getRows())):...
class Display(object): @classmethod def get_columns(cls): raise NotImplementedError @classmethod def get_rows(cls): raise NotImplementedError @classmethod def get_row_text(cls, row): raise NotImplementedError def show(self): for i in range(int(self.getRows...
def fact(a): if a<=1: return 1 return a*fact(a-1) a = int(input()) for i in range(a): n=int(input()) print(fact(n))
def fact(a): if a <= 1: return 1 return a * fact(a - 1) a = int(input()) for i in range(a): n = int(input()) print(fact(n))
''' package fitnesse.slim; import java.util.List; import fitnesse.util.ListUtility; ''' ''' Packs up a list into a serialized string using a special format. The list items must be strings, or lists. They will be recursively serialized. Format: [iiiiii:llllll:item...] All lists (including lists within lists) ...
""" package fitnesse.slim; import java.util.List; import fitnesse.util.ListUtility; """ '\n Packs up a list into a serialized string using a special format. The list items must be strings, or lists.\n They will be recursively serialized.\n \n Format: [iiiiii:llllll:item...]\n All lists (including lists within lists...
def selection_sort(array): N = len(array) for i in range(N): # Find the min element in the unsorted a[i .. N - 1] # Assume the min is the first element. minimum_element_index = i for j in range(i + 1, N): if (array[j] < array[minimum_element_index]): ...
def selection_sort(array): n = len(array) for i in range(N): minimum_element_index = i for j in range(i + 1, N): if array[j] < array[minimum_element_index]: minimum_element_index = j if minimum_element_index != i: (array[i], array[minimum_element_i...
width = 10 precision = 4 value = decimal.Decimal("12.34567") f"result: {value:{width}.{precision}}" rf"result: {value:{width}.{precision}}" foo(f'this SHOULD be a multi-line string because it is ' f'very long and does not fit on one line. And {value} is the value.') foo('this SHOULD be a multi-line string, but no...
width = 10 precision = 4 value = decimal.Decimal('12.34567') f'result: {value:{width}.{precision}}' f'result: {value:{width}.{precision}}' foo(f'this SHOULD be a multi-line string because it is very long and does not fit on one line. And {value} is the value.') foo(f'this SHOULD be a multi-line string, but not reflowed...
# Event: LCCS Python Fundamental Skills Workshop # Date: May 2018 # Author: Joe English, PDST # eMail: computerscience@pdst.ie # Purpose: A program to demonstrate string concatenation noun = input("Enter a singular noun: ") print("The plural of "+noun+" is "+noun+"s")
noun = input('Enter a singular noun: ') print('The plural of ' + noun + ' is ' + noun + 's')
elements = { 0: { "element": 0, "description": "", "dynamic": False, "bitmap": False, "len": 0, "format": "", "start_position": 0, "end_position": 0 }, 1: { "element": 1, "description": "Bitmap Secondary", "dynamic": Fal...
elements = {0: {'element': 0, 'description': '', 'dynamic': False, 'bitmap': False, 'len': 0, 'format': '', 'start_position': 0, 'end_position': 0}, 1: {'element': 1, 'description': 'Bitmap Secondary', 'dynamic': False, 'bitmap': True, 'len': 16, 'format': 'AN', 'start_position': 0, 'end_position': 16}, 3: {'element': ...
def write_html(messages): file = open("messages.html","w") html = [] html.append('<html>\n<head>\n\t<meta http-equiv="Content-Type" content = "text/html" charset=UTF-8 >\n') html.append('\t<link rel="stylesheet" href="body.css">\n') html.append('\t<base href="../../"/>\n') html.append('\t<title>...
def write_html(messages): file = open('messages.html', 'w') html = [] html.append('<html>\n<head>\n\t<meta http-equiv="Content-Type" content = "text/html" charset=UTF-8 >\n') html.append('\t<link rel="stylesheet" href="body.css">\n') html.append('\t<base href="../../"/>\n') html.append('\t<title...
class ViradaCulturalSpider(CrawlSpider): name = "virada_cultural" start_urls = ["http://conteudo.icmc.usp.br/Portal/conteudo/484/243/alunos-especiais"] def parse(self, response): self.logger.info('A response from %s just arrived!', response.url)
class Viradaculturalspider(CrawlSpider): name = 'virada_cultural' start_urls = ['http://conteudo.icmc.usp.br/Portal/conteudo/484/243/alunos-especiais'] def parse(self, response): self.logger.info('A response from %s just arrived!', response.url)
red = (255,0,0) green = (0,255,0) blue = (0,0,255) darkBlue = (0,0,128) white = (255,255,255) black = (0,0,0) pink = (255,200,200)
red = (255, 0, 0) green = (0, 255, 0) blue = (0, 0, 255) dark_blue = (0, 0, 128) white = (255, 255, 255) black = (0, 0, 0) pink = (255, 200, 200)
def createWordList(filename): text_file= open(filename,"r") temp = text_file.read().split("\n") text_file.close() temp.pop() #remove the last new line return temp def canWeMakeIt(myWord, myLetters): listLetters=[] for letter in myLetters: listLetters.append (letter) for x in m...
def create_word_list(filename): text_file = open(filename, 'r') temp = text_file.read().split('\n') text_file.close() temp.pop() return temp def can_we_make_it(myWord, myLetters): list_letters = [] for letter in myLetters: listLetters.append(letter) for x in myWord: if x...
expected_output = { "BDI3147": { "interface": "BDI3147", "redirects_disable": False, "address_family": { "ipv4": { "version": { 1: { "groups": { 31: { "group_nu...
expected_output = {'BDI3147': {'interface': 'BDI3147', 'redirects_disable': False, 'address_family': {'ipv4': {'version': {1: {'groups': {31: {'group_number': 31, 'hsrp_router_state': 'active', 'statistics': {'num_state_changes': 17}, 'last_state_change': '12w6d', 'primary_ipv4_address': {'address': '10.190.99.49'}, 'v...
# User Configuration variable settings for pitimolo # Purpose - Motion Detection Security Cam # Created - 20-Jul-2015 pi-timolo ver 2.94 compatible or greater # Done by - Claude Pageau configTitle = "pi-timolo default config motion" configName = "pi-timolo-default-config" # These settings should both be False if thi...
config_title = 'pi-timolo default config motion' config_name = 'pi-timolo-default-config' verbose = True log_data_to_file = True debug = False image_test_print = False image_name_prefix = 'cam1-' image_width = 1024 image_height = 768 image_v_flip = False image_h_flip = False image_rotation = 0 image_preview = False no_...
# This problem was asked by Facebook. # Given a binary tree, return all paths from the root to leaves. # For example, given the tree: # 1 # / \ # 2 3 # / \ # 4 5 # Return [[1, 2], [1, 3, 4], [1, 3, 5]]. def getPaths(tree, path): left = None if tree.left: left = getPaths(tree.left, path + [tree...
def get_paths(tree, path): left = None if tree.left: left = get_paths(tree.left, path + [tree.value]) right = None if tree.right: right = get_paths(tree.right, path + [tree.value]) merged_list = [] if left: merged_list = mergedList + left if right: merged_list...
#!/usr/bin/env python # -*- coding: utf-8 -*- # File : __init__.py # Author : yang <mightyang@hotmail.com> # Date : 10.03.2019 # Last Modified Date: 11.03.2019 # Last Modified By : yang <mightyang@hotmail.com> __all__ = ['pkgProj'] # from . import *
__all__ = ['pkgProj']
# Sum square difference # Answer: 25164150 def sum_of_the_squares(min_value, max_value): total = 0 for i in range(min_value, max_value + 1): total += i ** 2 return total def square_of_the_sum(min_value, max_value): total = 0 for i in range(min_value, max_value + 1): t...
def sum_of_the_squares(min_value, max_value): total = 0 for i in range(min_value, max_value + 1): total += i ** 2 return total def square_of_the_sum(min_value, max_value): total = 0 for i in range(min_value, max_value + 1): total += i return total ** 2 def sum_square_difference...
# import pytest def test_query_no_join(connection): query = connection.get_sql_query(metrics=["total_item_revenue"], dimensions=["channel"]) correct = ( "SELECT order_lines.sales_channel as order_lines_channel," "SUM(order_lines.revenue) as order_lines_total_item_revenue " "FROM anal...
def test_query_no_join(connection): query = connection.get_sql_query(metrics=['total_item_revenue'], dimensions=['channel']) correct = 'SELECT order_lines.sales_channel as order_lines_channel,SUM(order_lines.revenue) as order_lines_total_item_revenue FROM analytics.order_line_items order_lines GROUP BY order_li...
#%% def validate_velocity_derivative(): pass #%% trial = 's1x2i7x5' subject = 'AB01' joint = 'jointangles_shank_x' filename = '../local-storage/test/dataport_flattened_partial_{}.parquet'.format(subject) df = pd.read_parquet(filename) trial_df = df[df['trial'] == trial] ...
def validate_velocity_derivative(): pass trial = 's1x2i7x5' subject = 'AB01' joint = 'jointangles_shank_x' filename = '../local-storage/test/dataport_flattened_partial_{}.parquet'.format(subject) df = pd.read_parquet(filename) trial_df = df[df['trial'] == trial] model_foot_dot = model_lo...
# Inheritance in coding is when one "child" class receives # all of the methods and attributes of another "parent" class class Test: def __init__(self): self.x = 0 # class Derived_Test inherits from class Test class Derived_Test(Test): def __init__(self): Test.__init__(self) # do Test's __i...
class Test: def __init__(self): self.x = 0 class Derived_Test(Test): def __init__(self): Test.__init__(self) self.y = 1 b = derived__test() print(b.x, b.y)
DEFAULT_NUM_IMAGES = 40 LOWER_LIMIT = 0 UPPER_LIMIT = 100 class MissingConfigException(Exception): pass class ImageLimitException(Exception): pass def init(config): if (config is None): raise MissingConfigException() raise NotImplementedError def download(num_images): images_to_down...
default_num_images = 40 lower_limit = 0 upper_limit = 100 class Missingconfigexception(Exception): pass class Imagelimitexception(Exception): pass def init(config): if config is None: raise missing_config_exception() raise NotImplementedError def download(num_images): images_to_download ...
#new file as required print ('ne1') print ('ne2') #C:\Users\kpmis\OneDrive\Documents\GitHub\wowmeter\new1.py
print('ne1') print('ne2')
def includeme(config): config.add_static_view('static', 'static', cache_max_age=0) config.add_route('home', '/') config.add_route('auth', '/auth') config.add_route('add-stock', '/add-stock') config.add_route('logout', '/logout') config.add_route('portfolio', '/portfolio') config.add_route('s...
def includeme(config): config.add_static_view('static', 'static', cache_max_age=0) config.add_route('home', '/') config.add_route('auth', '/auth') config.add_route('add-stock', '/add-stock') config.add_route('logout', '/logout') config.add_route('portfolio', '/portfolio') config.add_route('s...
#! python3 # -*- coding: utf-8 -*- class OdoleniumError(Exception): def __init__(self, msg): super().__init__(msg)
class Odoleniumerror(Exception): def __init__(self, msg): super().__init__(msg)
while True: print('-' * 50) num = int(input('Quer ver a tabuada de qual valor? ')) print('-'*50) if num < 0: break for i in range(1,11): print(f'{num} x {i} = {num*i}') print('Programa finalizado. \nObrigado e volte sempre!')
while True: print('-' * 50) num = int(input('Quer ver a tabuada de qual valor? ')) print('-' * 50) if num < 0: break for i in range(1, 11): print(f'{num} x {i} = {num * i}') print('Programa finalizado. \nObrigado e volte sempre!')
def get_code_langs(): return [[164, 'MPASM', True], [165, 'MXML', True], [166, 'MySQL', True], [167, 'Nagios', True], [160, 'MIX Assembler', True], [161, 'Modula 2', True], [162, 'Modula 3', True], [163, 'Motorola 68000 HiSoft Dev',...
def get_code_langs(): return [[164, 'MPASM', True], [165, 'MXML', True], [166, 'MySQL', True], [167, 'Nagios', True], [160, 'MIX Assembler', True], [161, 'Modula 2', True], [162, 'Modula 3', True], [163, 'Motorola 68000 HiSoft Dev', True], [173, 'NullSoft Installer', True], [174, 'Oberon 2', True], [175, 'Objeck Pr...
''' TODO: def get_wrapper def get_optimizer '''
""" TODO: def get_wrapper def get_optimizer """
_base_ = 'fcos_r50_caffe_fpn_gn-head_1x_coco.py' model = dict( pretrained='open-mmlab://detectron2/resnet50_caffe', backbone=dict( dcn=dict(type='DCNv2', deform_groups=1, fallback_on_stride=False), stage_with_dcn=(False, True, True, True)), bbox_head=dict( norm_on_bbox=True, ...
_base_ = 'fcos_r50_caffe_fpn_gn-head_1x_coco.py' model = dict(pretrained='open-mmlab://detectron2/resnet50_caffe', backbone=dict(dcn=dict(type='DCNv2', deform_groups=1, fallback_on_stride=False), stage_with_dcn=(False, True, True, True)), bbox_head=dict(norm_on_bbox=True, centerness_on_reg=True, dcn_on_last_conv=True, ...
#!/usr/bin/env python3 bank = [0, 2, 7, 0] bank = [0, 5, 10, 0, 11, 14, 13, 4, 11, 8, 8, 7, 1, 4, 12, 11] visited = {} steps = 0 l = len(bank) while tuple(bank) not in visited: visited[tuple(bank)] = steps m = max(bank) i = bank.index(m) bank[i] = 0 # Set the item to 0 quotient = m // l bank ...
bank = [0, 2, 7, 0] bank = [0, 5, 10, 0, 11, 14, 13, 4, 11, 8, 8, 7, 1, 4, 12, 11] visited = {} steps = 0 l = len(bank) while tuple(bank) not in visited: visited[tuple(bank)] = steps m = max(bank) i = bank.index(m) bank[i] = 0 quotient = m // l bank = [x + quotient for x in bank] remainder =...
def reorder_boxes(boxes): boxes.sort() ans = list() for i in range(len(boxes) - 1, -1, -2): if i - 1 >= 0: ans.append(boxes[i] + boxes[i - 1]) else: ans.append(boxes[i]) return ans print(reorder_boxes([1, 2, 3, 4, 5, 6, 7]))
def reorder_boxes(boxes): boxes.sort() ans = list() for i in range(len(boxes) - 1, -1, -2): if i - 1 >= 0: ans.append(boxes[i] + boxes[i - 1]) else: ans.append(boxes[i]) return ans print(reorder_boxes([1, 2, 3, 4, 5, 6, 7]))
def sleep(seconds: float): pass def sleep_ms(millis: int): pass def sleep_us(micros: int): pass
def sleep(seconds: float): pass def sleep_ms(millis: int): pass def sleep_us(micros: int): pass
for i in range(1, 11): for j in range(1, 11): a = i * j if a < 10: a = " " + str(a) elif a < 100: a = " " + str(a) else: a = str(a) print(a, end=" ") print()
for i in range(1, 11): for j in range(1, 11): a = i * j if a < 10: a = ' ' + str(a) elif a < 100: a = ' ' + str(a) else: a = str(a) print(a, end=' ') print()
class GaiaUtils: @staticmethod def convert_positive_int(param): param = int(param) if param < 1: raise ValueError return param
class Gaiautils: @staticmethod def convert_positive_int(param): param = int(param) if param < 1: raise ValueError return param
A_CONSTANT = 45 def a_sum_function(a: int, b: int) -> int: return a + b def a_mult_function(a: int, b: int) -> int: return a * b class ACarClass: def __init__(self, color: str, speed: int): self.color = color self.speed = speed def describe(self) -> str: return f'I am a {s...
a_constant = 45 def a_sum_function(a: int, b: int) -> int: return a + b def a_mult_function(a: int, b: int) -> int: return a * b class Acarclass: def __init__(self, color: str, speed: int): self.color = color self.speed = speed def describe(self) -> str: return f'I am a {sel...
# Definition for singly-linked list. # class ListNode(object): # def __init__(self, x): # self.val = x # self.next = None class Solution(object): def getIntersectionNode(self, headA, headB): ha, hb = headA, headB while ha != hb: ha = ha.next if ha else headB ...
class Solution(object): def get_intersection_node(self, headA, headB): (ha, hb) = (headA, headB) while ha != hb: ha = ha.next if ha else headB hb = hb.next if hb else headA return ha
AUTHOR = 'Sage Bionetworks' SITENAME = 'Sage Bionetworks Developer Handbook' SITEURL = '' PATH = 'content' TIMEZONE = 'America/Los_Angeles' DEFAULT_LANG = 'en' # Feed generation is usually not desired when developing # FEED_ALL_ATOM = None # CATEGORY_FEED_ATOM = None # TRANSLATION_FEED_ATOM = None # AUTHOR_FEED_ATO...
author = 'Sage Bionetworks' sitename = 'Sage Bionetworks Developer Handbook' siteurl = '' path = 'content' timezone = 'America/Los_Angeles' default_lang = 'en' default_pagination = False
''' Author: jianzhnie Date: 2022-01-24 11:36:20 LastEditTime: 2022-01-24 11:36:21 LastEditors: jianzhnie Description: '''
""" Author: jianzhnie Date: 2022-01-24 11:36:20 LastEditTime: 2022-01-24 11:36:21 LastEditors: jianzhnie Description: """
jogador = {} lista = [] total = 0 jogador['Nome'] = input('Nome do jogador: ') quantidade = int(input('Quantas partidas {} jogou ? '.format(jogador['Nome']))) for i in range(0, quantidade): gol_quantidade = int(input('Quantos gols na partida {} ? '.format(i + 1))) total += gol_quantidade lista.append(gol_qu...
jogador = {} lista = [] total = 0 jogador['Nome'] = input('Nome do jogador: ') quantidade = int(input('Quantas partidas {} jogou ? '.format(jogador['Nome']))) for i in range(0, quantidade): gol_quantidade = int(input('Quantos gols na partida {} ? '.format(i + 1))) total += gol_quantidade lista.append(gol_qu...
def my_sum(*args): # *args = 1, 2, 3 print(type(args)) print(args) return sum(args) def my_sum_2(args): # args = [1, 2, 3] return sum(args) print(my_sum(1, 2, 3)) # a # my_sum([1, 2, 3]) # b # my_sum_2(1, 2, 3) # c print(my_sum_2([1, 2, 3])) # d _, *args = 0, 1, 2, 3 args_2 = [1, 2, 3]...
def my_sum(*args): print(type(args)) print(args) return sum(args) def my_sum_2(args): return sum(args) print(my_sum(1, 2, 3)) print(my_sum_2([1, 2, 3])) (_, *args) = (0, 1, 2, 3) args_2 = [1, 2, 3] print(args) print(args_2)
#!/usr/bin/python3 def Encrypt(K, P): cipher = [] for letter in P: cipher.append(chr((ord(letter) - 65 + K) % 26 + 65)) return "".join(cipher) def disp(K): for i in range(0, 25): print(chr(i + 65), end=" ") print() for i in range(0, 25): print(chr((i + K) % 26 + 65),...
def encrypt(K, P): cipher = [] for letter in P: cipher.append(chr((ord(letter) - 65 + K) % 26 + 65)) return ''.join(cipher) def disp(K): for i in range(0, 25): print(chr(i + 65), end=' ') print() for i in range(0, 25): print(chr((i + K) % 26 + 65), end=' ') print() ...
sample = { "asset": { "ancestors": [ "projects/163454223397", "organizations/673763744309" ], "assetType": "compute.googleapis.com/Instance", "name": "//compute.googleapis.com/projects/sc-vice-test/zones/us-central1-a/instances/instance-1", "resource":...
sample = {'asset': {'ancestors': ['projects/163454223397', 'organizations/673763744309'], 'assetType': 'compute.googleapis.com/Instance', 'name': '//compute.googleapis.com/projects/sc-vice-test/zones/us-central1-a/instances/instance-1', 'resource': {'data': {'allocationAffinity': {'consumeAllocationType': 'ANY_ALLOCATI...