+ 1
Python. Is there any '' command " that can make a text appear on the screen or something like that?
2 Respuestas
+ 10
You can use print("hi") to print on console.
Or try,
sys.stdout.write()
Or
PrettyPrint
I know these 3 options
For printing a data.
Hope that helped 😄
+ 2
Thx