All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tests.java.org.python.indexer.data.refs.py Maven / Gradle / Ivy

Go to download

Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform.

There is a newer version: 2.7.4
Show newest version
# single definition with some references in various contexts

foo = 3.14  # 1

print foo, [foo]  # 2, 3

print {foo: foo}  # 4, 5

print "foo %s" % 1 + foo  # 6, 7

print str(foo)  # 8

print (
  # the default parser had this name's offset starting at prev paren:
  foo)  # 9

print (foo,)  # 10

print ([foo]), (-foo)  # 11, 12

print lambda(foo): foo  # 13, 14

print (lambda(x): foo)("bar")  # 15

print (((foo)))  # 16




© 2015 - 2024 Weber Informatics LLC | Privacy Policy