PyCharm Python console at the bottom left
- Bottom "Python Console"
2 + 3
x = 2
print(x)
def f(x, y):
return x+y
f(4, 5)
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
2 + 3
x = 2
print(x)
def f(x, y):
return x+y
f(4, 5)