0
def wish(): n=input('some string') wish(n) can we define input at run time? Please advise and correct me with output
9 Réponses
0
def wish(n):
n=('enter some string')
wish(n)
i need to define my string at run time
please advise me this code.
0
yeah sure
0
def wish(n):
n=input('enter some string')
wish(n)
actually i need to give some string at runtime by passing n ..hope it is clear .
thanks for responding.
0
or else can you share a code that how to run a string or valur at runtime with defining intially in my file?
0
gentleman , if you still not clear with my code please post a comment.
0
need response please.
0
exactly sir.
0
Thank you so much for your help..
0
its worked