Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to run python input function? #17

Open
Sunny-guangge opened this issue Feb 29, 2024 · 4 comments
Open

how to run python input function? #17

Sunny-guangge opened this issue Feb 29, 2024 · 4 comments

Comments

@Sunny-guangge
Copy link

No description provided.

@Sunny-guangge
Copy link
Author

def main():
# print('00')
n1 = 10
n2 = 20
print(n1, '+', n2, '= ?')
a = input('send something')
a = int(a)
b = n1 + n2
if b == a:
print('good!')
else:
print('sorry', b)

in ios project how to implement the input function

@kewlbear
Copy link
Owner

kewlbear commented Mar 4, 2024

You can build UI using SwiftUI or UIKit and pass user input to Python code.

@Sunny-guangge
Copy link
Author

You can build UI using SwiftUI or UIKit and pass user input to Python code.

but How to maintain the python running environment? When I receive a prompt to 'send something' and then enter a number, continue executing the subsequent python code?

@kewlbear
Copy link
Owner

kewlbear commented Mar 11, 2024

I see. So you want to keep using standard input/output. I guess it's possible but not easy. You can make a Pipe object and replace file descriptors of standard input/output with pipe's. Then either handle events or utilize async/await.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants