Beispiel #1
0
def greeting_loop(msg, count):
    for i in range(count):
        helper.greeting(msg)
Beispiel #2
0
# import a custom library inside the python repl
import math  # pulling in the math library say import math then press return
math.sqrt(
    4)  # you can say math square root and pass in any number in the parens


# Place in file create_custom_module_import
def greeting(
        first, last
):  # create the function and pass in the first and last as arguments
    return f'Hi {first} {last}!'  # now return the values


#-----------------------------------------------------------------------------
# Call from repl start the python environment
import helper  # name is create_custom_module_import NOT helper

helper.greeting('Kristine', 'Hudgens')  #
Beispiel #3
0
from helper import greeting

greeting("hey")
from helper import greeting

if __name__ == "__main__":
    greeting("github is great")
Beispiel #5
0
from helper import greeting

greeting("hello kitteh")
Beispiel #6
0
#Hudson Ayers hra5th

from helper import greeting

if __name__ == '__main__':
    msg = "hello"
    greeting(msg)
    greeting(msg)
Beispiel #7
0
from helper import greeting

greeting("hello ", "Apurva")
Beispiel #8
0
from helper import greeting

if __name__ == "__main__":
    greeting("Have another one!")
Beispiel #9
0
__author__ = "Berkeley Fergusson (wbf7kx)"

import helper

if __name__ == "__main__":
    helper.greeting("Hello Hello")
Beispiel #10
0
def render():
    print(h.greeting('Elizabeth', 'Martinez'))
Beispiel #11
0
import helper
if __name__ == "__main__":
    helper.greeting("so fun")
Beispiel #12
0
from helper import greeting

print("This is a change from new-feature1 branch")
greeting("This is my greeting")
print("This is a change from master")
Beispiel #13
0
def main():
    helper.greeting("hello")
    result = add(1, 7)
    helper.greeting(result)
Beispiel #14
0
__author__ = "BrianAguirre"

from helper import greeting

greeting("Hello")
Beispiel #15
0
def main():
	# print "hello"
	greeting("I am Joshua Angeley")
Beispiel #16
0
__author__ = "Berkeley Fergusson (wbf7kx)"

import helper

if __name__ == "__main__":
    helper.greeting("Print some stuff")
    helper.greeting("and print some more stuff")
Beispiel #17
0
#!/usr/bin/python3

__author__ = "mjk6zt"

from helper import greeting

greeting("hello, world")
Beispiel #18
0
__author__ = 'Ben'

from helper import greeting

greeting("new file says hi")
greeting()
Beispiel #19
0
import helper
if __name__ == "__main__":
	helper.greeting('Hello, after change.py made in master')	
Beispiel #20
0
# Chiara Sauvage

import helper

if __name__ == "__main__":
    helper.greeting("hello")
    helper.greeting(
        "Look at your boyfriend. Now look at me. Now back to your boyfriend- NOW BACK TO ME."
    )
Beispiel #21
0
# hello.py
# Ryan Donovan (rad9vy)

import helper
import newFile

if __name__ == "__main__":
    helper.greeting("Hi I'm Ryan.")
    print("Hello.")
    print(newFile.count_greeting("Hi I'm Ryan."))
Beispiel #22
0
from helper import greeting

if __name__ == "__main__":
    greeting('Hello')

Beispiel #23
0
__author__ = 'vanessadyce'

from helper import greeting

if __name__ == '__main__':
    greeting("Greetings")
Beispiel #24
0
from helper import greeting

greeting("Hello!")
Beispiel #25
0
from helper import greeting

if __name__ == "__main__":
	greeting("empty")
Beispiel #26
0
from helper import greeting

print("Hello World!")

greeting("hello")

from helper import greeting

if __name__ = '__main__':
	greeting("Goodbye")
Beispiel #28
0
def render():
    print(h.greeting('Tiffany', 'Hudgens'))
Beispiel #29
0
from helper import greeting
greeting("Hello World!")
Beispiel #30
0
from helper import greeting
from helper import accusation
greeting("hello")
greeting("you are all my precious friends")
accusation("you are all my precious friends")
accusation("I trusted you sir")
Beispiel #31
0
from helper import greeting

greeting("This is another new file")

Beispiel #32
0
from helper import greeting

greeting("squanch")
Beispiel #33
0
from helper import greeting

if __name__ == "__main__":
    greeting("hello2")
Beispiel #34
0
import helper
helper.greeting("hello")
print("goodbye, for now.")
Beispiel #35
0
from helper import greeting
print("hello")

greeting("hello from the helper method!")
Beispiel #36
0
__author__ = 'Mamadou'

from helper import greeting

greeting("hello");
Beispiel #37
0
import helper

helper.greeting('hello')

for x in range(10):
	print(x)

Beispiel #38
0
__author__ = 'cjk4wr'

from helper import greeting

print("hello")
greeting('hello!')
Beispiel #39
0
from helper import greeting

greeting("YOOOOO WHATS UP")
Beispiel #40
0
from helper import greeting
from newmaster import printintmult


if __name__ == "__main__":
	greeting("hello")
	printintmult(5)
	greeting("hola amiga!")
	

def render():
    print(h.greeting('James', 'Jager'))
Beispiel #42
0
def test():
    greeting("yo")
Beispiel #43
0
from helper import greeting

greeting("hello from other file, ", "Apurva")
Beispiel #44
0
"""
Kean Finucane (kf9zy)
Lab 5 - Git and Github
CS 3240 - Smith
16 February 2017
"""
__author__ = 'Kean Finucane'

from helper import greeting
from helper2 import excited_greeting

def example():
    print('This is an example')

if __name__ == '__main__':
    greeting('hello')
<<<<<<< HEAD
    example()
=======
    excited_greeting('hello')
>>>>>>> develop
Beispiel #45
0
def render():
    print(h.greeting('Kristine', 'Hudgens'))
Beispiel #46
0
import helper

if __name__ == '__main__':
    helper.greeting("What's up?")
Beispiel #47
0
import helper

if __name__ == "__main__":
	helper.greeting("go hoos")
Beispiel #48
0
def goodbye(msg):
    greeting(msg)
    print("Good bye!" + msg)
Beispiel #49
0
__author__ = 'gkr6sy'

from helper import greeting

greeting('hello')
Beispiel #50
0
from helper import greeting

if __name__ == "__main__":
    greeting("This is different!")

Beispiel #51
0
__author__ = 'gqt4ev'

import helper

if __name__ == "__main__":
    message = "hello"
    helper.greeting(message)
    x = 25
    y = 30
    mathematics = helper.calc(x, y)
    print(mathematics)
Beispiel #52
0
from helper import greeting

if __name__ == "__main__":
	greeting("hello")

Beispiel #53
0
import helper
helper.greeting("hello world")
Beispiel #54
0
import helper

if __name__ == '__main__':
    helper.greeting("Hello")
Beispiel #55
0
import helper
helper.greeting("this is not a greeting.")