Call function with parameters
Project description
Parameters call function, :-)
-----------------------------
You can do:
from __future__ import print_function
print('x', 'y', sep=',')
But I can not do:
from __future__ import print_function
parameters = ('x', 'y', sep=',')
print(parameters)
With icall, I can do similar thing:
from __future__ import print_function
from icall import ICall
parameters = ICall('x', 'y', sep=',')
parameters(print)
Sometimes, you may use Parameters(similar to ICall):
from __future__ import print_function
from icall import Parameters
parameters = Parameters('x', 'y', sep=',')
parameters(format)
Change Log
----------
0.3.0
- Rename package 'callwith' to 'icall'
-----------------------------
You can do:
from __future__ import print_function
print('x', 'y', sep=',')
But I can not do:
from __future__ import print_function
parameters = ('x', 'y', sep=',')
print(parameters)
With icall, I can do similar thing:
from __future__ import print_function
from icall import ICall
parameters = ICall('x', 'y', sep=',')
parameters(print)
Sometimes, you may use Parameters(similar to ICall):
from __future__ import print_function
from icall import Parameters
parameters = Parameters('x', 'y', sep=',')
parameters(format)
Change Log
----------
0.3.0
- Rename package 'callwith' to 'icall'
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
callwith-0.2.0.zip
(2.0 kB
view details)
File details
Details for the file callwith-0.2.0.zip
.
File metadata
- Download URL: callwith-0.2.0.zip
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7023f334fbd05ee04f3dda81c00f4c71a667fe469800051a0bf3aa2f3ed056bc |
|
MD5 | 568d184beaa3965631c0e25b78a24196 |
|
BLAKE2b-256 | 90a51ced0adc1aafc6d39edb0991edf486ad8bf6d73291b5490d59fbb51aa30d |