Computer Science
Related Questions
Which two operators can be used on numeric values in Python?
- @
- %
- +
- #
Which of the following four code fragments will yield following output?
Eina Mina Dika
Select all of the function calls that result in this output
- print('''Eina
\nMina
\nDika''') - print('''EinaMinaDika''')
- print('Eina\nMina\nDika')
- print('Eina
Mina
Dika')
- print('''Eina
For a given declaration in Python as s = "WELCOME", which of the following will be the correct output of print(s[1::2])?
- WEL
- COME
- WLOE
- ECM
Which of the following is an incorrect Logical operator in Python?
- not
- in
- or
- and