Update test.py for python3

Change-Id: I667579a5969727190e08b282b6b673cf9bf8cf36
This commit is contained in:
James E. Blair 2024-04-06 10:12:52 -07:00
parent 05c1273103
commit 97d6dac848
1 changed files with 14 additions and 14 deletions

28
test.py
View File

@ -19,20 +19,20 @@
# limitations under the License.
def main():
print "Vikram: The exquisite corpse"
print "Looked so pale and beautiful"
print "And yet it's still dead"
print "...and then it woke up to eat the living...."
print "daylights"
print "are brighter than nightlights"
print "I like vi"
print "I like vim"
print "The snake which cannot cast its skin has to die."
print "My name is khan............................................................................................"
print ":-)"
print "First lame commit:-)"
print "SB"
print "That which does not kill me makes me strong."
print("The exquisite corpse")
print("Looked so pale and beautiful")
print("And yet it's still dead")
print("...and then it woke up to eat the living....")
print("daylights")
print("are brighter than nightlights")
print("I like vi")
print("I like vim")
print("The snake which cannot cast its skin has to die.")
print("My name is khan............................................................................................")
print(":-)")
print("First lame commit:-)")
print("SB")
print("That which does not kill me makes me strong.")
if __name__ == "__main__":
main()