Reputation: 1
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
Reputation: 634
Just remove the "="
first='dip'
last='rakshit'
print(first,last)
Upvotes: 1