0
Raw_input... Whats that Is that coud u explain
For what is raw_input
5 Antworten
+ 3
'raw_input()' is use in Python 2.x
In Python 3.x, you'll use 'input()'.
... while 'input()' in Pyhton 2.x is equivalent to 'eval(input())' in Python 3.x ^^
+ 3
Like visph said - raw_input is a command in Python 2.x
It does the same, as Python 3.x's print() - it prints its argument to the console :)
0
I heard that input() in Python 2.X has critical exploit that hackers might feel useful. So it is reccomanded not using it. Because of that, in Pythin 3, input() works same as raw_input() and exploitable input function has been removed.
- 1
@visph thank you for the comment but it does not help me but thank u
- 1
Aaaaaahhh i'm so stupid... Understood