Hi
You can use the following to only get the IP address from the set command output:
from jnpr.junos import Device
from lxml import etree
import jxmlease
import json
from junos import Junos_Configuration
import jcs
def main():
dev = Device()
dev.open()
filter = '<system><ntp><source-address></source-address></ntp></system>'
data = dev.rpc.get_config(filter_xml=filter, options={'format':'set'})
#print (etree.tostring(data, encoding='unicode', pretty_print=True))
dev.close()
data=data.text
data=data.split(" ")
data=data[4]
print data
if __name__ == "__main__":
main()
Hope this helps