Dipanjal Rakshit
Dipanjal Rakshit

Reputation: 1

Output not showing on Jupiter Lab for Python

After print command output is not showing. It happens few time back, after an hour same code runs smoothly. As I am a beginner I don't know much about what's happening.

first = 'dip'
last = 'rakshit'
print = (first, last)

Upvotes: 0

Views: 100

Answers (1)

hellomynameisA
hellomynameisA

Reputation: 634

Just remove the "="

first='dip'
last='rakshit'
print(first,last)

Upvotes: 1

Related Questions