0
Is python case sensitive??
5 odpowiedzi
+ 3
@DFX is right... just type in code playground:
foobar = 'test';
print(FOOBAR")
... and click "run" :P
+ 2
sure it is, but why don't you try it in the code playground?
0
yeah will be doing it.. thanks
0
yes
- 1
you can use .upper and .lower in your programs to make it not case sensitive though
print("HELLO".lower)
#will print 'hello'