top of page
Search

PYTHON CODING

  • Writer: waclaw_koscielniak
    waclaw_koscielniak
  • Aug 15
  • 1 min read

import pandas as pd

s = pd.Series([5, 8, 12, 18, 22])

s[s < 10] *= 2

print(s.sum())


[Running] python3 -u "/Users/name/test/test95.py"

78

[Done] exited with code=0 in 0.472 seconds


Try to run it.
Try to run it.

 
 
 

1 Comment


Guest
Aug 15

Did you try to run it?

Like
bottom of page