예제 #1
0
def greeting_loop(msg, count):
    for i in range(count):
        helper.greeting(msg)
예제 #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')  #
예제 #3
0
from helper import greeting

greeting("hey")
예제 #4
0
from helper import greeting

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

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

from helper import greeting

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

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

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

import helper

if __name__ == "__main__":
    helper.greeting("Hello Hello")
예제 #10
0
def render():
    print(h.greeting('Elizabeth', 'Martinez'))
예제 #11
0
import helper
if __name__ == "__main__":
    helper.greeting("so fun")
예제 #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")
예제 #13
0
def main():
    helper.greeting("hello")
    result = add(1, 7)
    helper.greeting(result)
예제 #14
0
__author__ = "BrianAguirre"

from helper import greeting

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

import helper

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

__author__ = "mjk6zt"

from helper import greeting

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

from helper import greeting

greeting("new file says hi")
greeting()
예제 #19
0
import helper
if __name__ == "__main__":
	helper.greeting('Hello, after change.py made in master')	
예제 #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."
    )
예제 #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."))
예제 #22
0
from helper import greeting

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

예제 #23
0
__author__ = 'vanessadyce'

from helper import greeting

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

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

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

print("Hello World!")

greeting("hello")

예제 #27
0
from helper import greeting

if __name__ = '__main__':
	greeting("Goodbye")
예제 #28
0
def render():
    print(h.greeting('Tiffany', 'Hudgens'))
예제 #29
0
from helper import greeting
greeting("Hello World!")
예제 #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")
예제 #31
0
from helper import greeting

greeting("This is another new file")

예제 #32
0
from helper import greeting

greeting("squanch")
예제 #33
0
from helper import greeting

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

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

from helper import greeting

greeting("hello");
예제 #37
0
import helper

helper.greeting('hello')

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

예제 #38
0
__author__ = 'cjk4wr'

from helper import greeting

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

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


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

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

greeting("hello from other file, ", "Apurva")
예제 #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
예제 #45
0
def render():
    print(h.greeting('Kristine', 'Hudgens'))
예제 #46
0
import helper

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

if __name__ == "__main__":
	helper.greeting("go hoos")
예제 #48
0
def goodbye(msg):
    greeting(msg)
    print("Good bye!" + msg)
예제 #49
0
파일: hello.py 프로젝트: gkr6sy/CS3240-Lab5
__author__ = 'gkr6sy'

from helper import greeting

greeting('hello')
예제 #50
0
from helper import greeting

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

예제 #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)
예제 #52
0
from helper import greeting

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

예제 #53
0
파일: hello.py 프로젝트: BrianZanti/Lab5
import helper
helper.greeting("hello world")
예제 #54
0
import helper

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