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

28
test.py

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